Placed the #include<osg/Node> within #ifdef OSG_USE_BOUND to prevent unncessary inclusion of Node header when OSG_USE_BOUND is false.

This commit is contained in:
Robert Osfield 2014-05-15 13:22:47 +00:00
parent 20b9f3ff88
commit 4f199e36c9

View File

@ -21,7 +21,10 @@
#include <osg/Matrix>
#include <osg/BoundingSphere>
#include <osg/BoundingBox>
#ifdef OSG_USE_BOUND
#include <osg/Node>
#endif
#include <vector>