mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 08:14:48 +02:00
warnings
This commit is contained in:
parent
825c1c8876
commit
bd67531ffd
1 changed files with 2 additions and 2 deletions
|
@ -542,7 +542,7 @@ void DomainServer::prepopulateStaticAssignmentFile() {
|
|||
QStringList multiConfigList = multiConfig.split(";");
|
||||
|
||||
// read each config to a payload for a VS assignment
|
||||
for (unsigned int i = 0; i < multiConfigList.size(); i++) {
|
||||
for (int i = 0; i < multiConfigList.size(); i++) {
|
||||
QString config = multiConfigList.at(i);
|
||||
|
||||
qDebug("config[%d]=%s\n", i, config.toLocal8Bit().constData());
|
||||
|
@ -584,7 +584,7 @@ void DomainServer::prepopulateStaticAssignmentFile() {
|
|||
QStringList multiConfigList = multiConfig.split(";");
|
||||
|
||||
// read each config to a payload for a VS assignment
|
||||
for (unsigned int i = 0; i < multiConfigList.size(); i++) {
|
||||
for (int i = 0; i < multiConfigList.size(); i++) {
|
||||
QString config = multiConfigList.at(i);
|
||||
|
||||
qDebug("config[%d]=%s\n", i, config.toLocal8Bit().constData());
|
||||
|
|
Loading…
Reference in a new issue