summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2014-02-16 11:24:08 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2014-02-16 11:24:08 -0600
commit3c13229d98167ae4ae0710d5eeef23fef5005bf0 (patch)
tree277206e2488622e242fb735e1078ea9a4b810ae6
parentc5b373273f565a5a8f0a83fb25e8cfca3e570945 (diff)
downloadtellico-3c13229d.tar.gz
tellico-3c13229d.zip
Fix unintended renaming
-rw-r--r--src/tellico_debug.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/tellico_debug.h b/src/tellico_debug.h
index 9dee1ff..ea65518 100644
--- a/src/tellico_debug.h
+++ b/src/tellico_debug.h
@@ -22,22 +22,22 @@
// std::clock_t
#include <ctime>
-// linux has __GNUC_PREREQ, NetBSD has __GNUC_PRETQ__
-#if defined(__GNUC_PREREQ) && !defined(__GNUC_PRERETQ__)
-#define __GNUC_PRERETQ__ __GNUC_PREREQ
+// linux has __GNUC_PREREQ, NetBSD has __GNUC_PREQ__
+#if defined(__GNUC_PREREQ) && !defined(__GNUC_PREREQ__)
+#define __GNUC_PREREQ__ __GNUC_PREREQ
#endif
-#if !defined(__GNUC_PRERETQ__)
+#if !defined(__GNUC_PREREQ__)
#if defined __GNUC__
-#define __GNUC_PRERETQ__(x, y) \
+#define __GNUC_PREREQ__(x, y) \
((__GNUC__ == (x) && __GNUC_MINOR__ >= (y)) || \
(__GNUC__ > (x)))
#else
-#define __GNUC_PRERETQ__(x, y) 0
+#define __GNUC_PREREQ__(x, y) 0
#endif
#endif
-# if defined __cplusplus ? __GNUC_PRERETQ__ (2, 6) : __GNUC_PRERETQ__ (2, 4)
+# if defined __cplusplus ? __GNUC_PREREQ__ (2, 6) : __GNUC_PREREQ__ (2, 4)
# define MY_FUNCTION __PRETTY_FUNCTION__
# else
# if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L