Fixed compile error due to logging code changing scope.

This commit is contained in:
David Williams 2015-05-14 11:27:19 +02:00
parent 3937dc3c61
commit b19de819e2

View File

@ -53,7 +53,7 @@ distribution.
ss << " Message: " << (message); \
ss << " Location: " << "Line " << __LINE__ << " of " << __FILE__; \
ss << "\n"; \
PolyVox::Impl::getLoggerInstance()->logFatalMessage(ss.str()); \
PolyVox::getLoggerInstance()->logFatalMessage(ss.str()); \
POLYVOX_HALT(); \
} \
} while(0) \