Fix GCC warning (string split across lines).

This commit is contained in:
Andrzej Kapolka 2014-01-16 14:24:19 -08:00
parent dd732c788e
commit 58ee527997

View file

@ -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;
} }