From 75ec0abe5af244277109954fb506e1d1df1fa1a5 Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Tue, 9 Jun 2009 14:31:56 +0000 Subject: [PATCH] Removed two old macros that are now useless. git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@852 416bcca6-2ee7-4201-b75f-2eb2f807beb1 --- errors.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/errors.h b/errors.h index 4701f86c..238471b7 100644 --- a/errors.h +++ b/errors.h @@ -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);