diff options
author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2021-01-07 16:52:10 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2021-01-07 16:52:10 +0900 |
commit | 184e82e8f044bb5912dc01ebb2f4b52866fcc917 (patch) | |
tree | fc309dc301ad0a2e78c857664c86051cf43a54bd | |
parent | 96ce1d9a0ff64494753ad4730f36a0cd7e7a89e7 (diff) |
Follow the NDEBUG given to the whole
-rw-r--r-- | complex.c | 2 | ||||
-rw-r--r-- | rational.c | 2 |
2 files changed, 0 insertions, 4 deletions
@@ -15,8 +15,6 @@ #include <ctype.h> #include <math.h> -#undef NDEBUG -#define NDEBUG #include "id.h" #include "internal.h" #include "internal/array.h" diff --git a/rational.c b/rational.c index ae134da79f..4a7df253a5 100644 --- a/rational.c +++ b/rational.c @@ -20,8 +20,6 @@ #include <gmp.h> #endif -#undef NDEBUG -#define NDEBUG #include "id.h" #include "internal.h" #include "internal/array.h" |