src/types.h

changeset 513
29eb671b34f6
parent 504
6a1fa662bfc1
child 522
afa691788bdb
--- a/src/types.h	Fri Oct 18 18:16:54 2013 +0300
+++ b/src/types.h	Fri Oct 18 21:52:09 2013 +0300
@@ -323,14 +323,12 @@
 void DoLog (std::initializer_list<StringFormatArg> args);
 
 // Macros to access these functions
-# ifndef IN_IDE_PARSER
+# ifndef IN_IDE_PARSER 
 #define fmt(...) DoFormat ({__VA_ARGS__})
-# define print(...) doPrint (g_file_stdout, {__VA_ARGS__})
 # define fprint(F, ...) doPrint (F, {__VA_ARGS__})
-# define log(...) DoLog({ __VA_ARGS__ });
+# define log(...) DoLog({ __VA_ARGS__ })
 #else
 str fmt (const char* fmtstr, ...);
-void print (const char* fmtstr, ...);
 void fprint (File& f, const char* fmtstr, ...);
 void log (const char* fmtstr, ...);
 #endif

mercurial