diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-09-23 07:02:22 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-09-23 07:02:22 +0000 |
| commit | 58e184e720cfb4330ccb57bad339695dbdeb8c6e (patch) | |
| tree | f79d404f39d7e4ce404defe88f2cfbfb14d7a630 /Primitives/interface | |
| parent | Reworked message formatting (diff) | |
| download | DiligentCore-58e184e720cfb4330ccb57bad339695dbdeb8c6e.tar.gz DiligentCore-58e184e720cfb4330ccb57bad339695dbdeb8c6e.zip | |
Fixed linux/mac build errors
Diffstat (limited to 'Primitives/interface')
| -rw-r--r-- | Primitives/interface/Errors.h | 4 |
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) |
