diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-04-05 23:20:20 +0200 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-04-05 23:41:51 +0200 |
commit | ad2127a3e8b274d4946a35cafd31c904a3de294b (patch) | |
tree | e50a6ac1cbee88aadeb478437bb9ecd114551824 /core/vmap.h | |
parent | 9c3ddf05cb9c59817d885e9daca6e8f61c89dc97 (diff) | |
download | redot-engine-ad2127a3e8b274d4946a35cafd31c904a3de294b.tar.gz |
Replace a few #if/#elif with #ifdef and "#elif defined"
Diffstat (limited to 'core/vmap.h')
-rw-r--r-- | core/vmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vmap.h b/core/vmap.h index f46ed70a0f..fde9723d71 100644 --- a/core/vmap.h +++ b/core/vmap.h @@ -65,7 +65,7 @@ private: const Pair *a = _cowdata.ptr(); int middle = 0; -#if DEBUG_ENABLED +#ifdef DEBUG_ENABLED if (low > high) ERR_PRINT("low > high, this may be a bug"); #endif |