From 49683b4b486e4a27ea19b77d4baf03fc51e48996 Mon Sep 17 00:00:00 2001 From: David Williams Date: Thu, 14 May 2015 11:27:19 +0200 Subject: [PATCH] Fixed compile error due to logging code changing scope. --- include/PolyVox/Impl/Assertions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/PolyVox/Impl/Assertions.h b/include/PolyVox/Impl/Assertions.h index d33669a5..a6bc486e 100644 --- a/include/PolyVox/Impl/Assertions.h +++ b/include/PolyVox/Impl/Assertions.h @@ -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) \