Browse Source

SceneGraph: no need to return void.

pull/51/head
Vladimír Vondruš 12 years ago
parent
commit
388db5ae00
  1. 2
      src/Magnum/SceneGraph/Object.hpp

2
src/Magnum/SceneGraph/Object.hpp

@ -459,7 +459,7 @@ template<class Transformation> void Object<Transformation>::setClean(std::vector
references.push_back(*o);
}
return setClean(references);
setClean(references);
}
#ifdef CORRADE_GCC47_COMPATIBILITY

Loading…
Cancel
Save