summaryrefslogtreecommitdiffstats
path: root/Primitives/interface
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-09-23 07:02:22 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-09-23 07:02:22 +0000
commit58e184e720cfb4330ccb57bad339695dbdeb8c6e (patch)
treef79d404f39d7e4ce404defe88f2cfbfb14d7a630 /Primitives/interface
parentReworked message formatting (diff)
downloadDiligentCore-58e184e720cfb4330ccb57bad339695dbdeb8c6e.tar.gz
DiligentCore-58e184e720cfb4330ccb57bad339695dbdeb8c6e.zip
Fixed linux/mac build errors
Diffstat (limited to 'Primitives/interface')
-rw-r--r--Primitives/interface/Errors.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Primitives/interface/Errors.h b/Primitives/interface/Errors.h
index d38d4cc5..f8794787 100644
--- a/Primitives/interface/Errors.h
+++ b/Primitives/interface/Errors.h
@@ -92,8 +92,8 @@ do{ \
#define LOG_DEBUG_MESSAGE(Severity, ...)\
-do{ \
- auto _msg = Diligent::FormatString(##__VA_ARGS__ );\
+do{ \
+ auto _msg = Diligent::FormatString( ##__VA_ARGS__ );\
if(Diligent::DebugMessageCallback != nullptr) Diligent::DebugMessageCallback( Severity, _msg.c_str(), nullptr, nullptr, 0 );\
}while(false)