mirror of
https://github.com/lubosz/overte.git
synced 2025-08-07 18:01:15 +02:00
Fix GCC warning (string split across lines).
This commit is contained in:
parent
dd732c788e
commit
58ee527997
1 changed files with 2 additions and 2 deletions
|
@ -412,8 +412,8 @@ OctreeElement* OctreeElement::getChildAtIndex(int childIndex) const {
|
||||||
if (externalIndex < childCount && externalIndex >= 0) {
|
if (externalIndex < childCount && externalIndex >= 0) {
|
||||||
result = _children.external[externalIndex];
|
result = _children.external[externalIndex];
|
||||||
} else {
|
} else {
|
||||||
qDebug("getChildAtIndex() attempt to access external client out of bounds externalIndex=%d <<<<<<<<<< WARNING!!!
|
qDebug("getChildAtIndex() attempt to access external client out of "
|
||||||
",externalIndex);
|
"bounds externalIndex=%d <<<<<<<<<< WARNING!!!", externalIndex);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue