summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b290a75)
raw | patch | inline | side by side (parent: b290a75)
author | Alibek Omarov <a1ba.omarov@gmail.com> | |
Tue, 13 Feb 2018 20:16:18 +0000 (23:16 +0300) | ||
committer | Alibek Omarov <a1ba.omarov@gmail.com> | |
Tue, 13 Feb 2018 20:16:18 +0000 (23:16 +0300) |
nanogl.cpp | patch | blob | history |
diff --git a/nanogl.cpp b/nanogl.cpp
index 90fa364ca1c75e308643ddcd4e227347bce2ffcc..fdc2a9a8543a7d17b4d909c7fa40a09cd5d9efd0 100644 (file)
--- a/nanogl.cpp
+++ b/nanogl.cpp
#else
#ifndef _MSC_VER
#define LOGI( ... ) \
- printf( "I: "__VA_ARGS__ ); \
+ printf( "I: " __VA_ARGS__ ); \
printf( "\n" )
#define LOGD( ... ) \
if ( DEBUG_NANO ) \
{ \
- printf( "D: "__VA_ARGS__ ); \
+ printf( "D: " __VA_ARGS__ ); \
printf( "\n" ); \
}
#define LOGE( ... ) \
- printf( "E: "__VA_ARGS__ ); \
+ printf( "E: " __VA_ARGS__ ); \
printf( "\n" )
#define LOGW( ... ) \
- printf( "W: "__VA_ARGS__ ); \
+ printf( "W: " __VA_ARGS__ ); \
printf( "\n" )
#else
#define LOGI printf