summaryrefslogtreecommitdiff
path: root/core/vset.h
diff options
context:
space:
mode:
authorIgnacio Etcheverry <ignalfonsore@gmail.com>2019-04-05 23:20:20 +0200
committerIgnacio Etcheverry <ignalfonsore@gmail.com>2019-04-05 23:41:51 +0200
commitad2127a3e8b274d4946a35cafd31c904a3de294b (patch)
treee50a6ac1cbee88aadeb478437bb9ecd114551824 /core/vset.h
parent9c3ddf05cb9c59817d885e9daca6e8f61c89dc97 (diff)
Replace a few #if/#elif with #ifdef and "#elif defined"
Diffstat (limited to 'core/vset.h')
-rw-r--r--core/vset.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vset.h b/core/vset.h
index 678ec507ba..5f087a5a03 100644
--- a/core/vset.h
+++ b/core/vset.h
@@ -50,7 +50,7 @@ class VSet {
const T *a = &_data[0];
int middle = 0;
-#if DEBUG_ENABLED
+#ifdef DEBUG_ENABLED
if (low > high)
ERR_PRINT("low > high, this may be a bug");
#endif