Removed two old macros that are now useless.

git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@852 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Adrien Destugues 2009-06-09 14:31:56 +00:00
parent 4b3e8edfe8
commit 75ec0abe5a

View File

@ -27,12 +27,6 @@
/// Same as ::DEBUG but in hexadecimal
#define DEBUGX(y,z) printf("%s %d %s | %s : %X###\n",__FILE__,__LINE__,__func__,y,(unsigned int)z)
/// Macro to report unimplemented functions.
#define UNIMPLEMENTED printf("%s %d %s non implémenté !\n",__FILE__,__LINE__,__func__);
/// Macro to report untested functions.
#define UNTESTED printf("%s %d %s à tester !\n",__FILE__,__LINE__,__func__);
/// Helper function used by the macro ::Error
void Error_function(int error_code, const char *filename, int line_number, const char *function_name);