| Index: src/checks.h
|
| diff --git a/src/checks.h b/src/checks.h
|
| index a560b2fb1524e2a207c6fe4c3a90a4f7eb9f3d60..2bb94bb086ca3c9069c1e24f54afdce126eb2ea9 100644
|
| --- a/src/checks.h
|
| +++ b/src/checks.h
|
| @@ -271,8 +271,6 @@ bool EnableSlowAsserts();
|
| #define ASSERT_EQ(v1, v2) CHECK_EQ(v1, v2)
|
| #define ASSERT_NE(v1, v2) CHECK_NE(v1, v2)
|
| #define ASSERT_GE(v1, v2) CHECK_GE(v1, v2)
|
| -#define ASSERT_LT(v1, v2) CHECK_LT(v1, v2)
|
| -#define ASSERT_LE(v1, v2) CHECK_LE(v1, v2)
|
| #define SLOW_ASSERT(condition) if (EnableSlowAsserts()) CHECK(condition)
|
| #else
|
| #define ASSERT_RESULT(expr) (expr)
|
| @@ -280,8 +278,6 @@ bool EnableSlowAsserts();
|
| #define ASSERT_EQ(v1, v2) ((void) 0)
|
| #define ASSERT_NE(v1, v2) ((void) 0)
|
| #define ASSERT_GE(v1, v2) ((void) 0)
|
| -#define ASSERT_LT(v1, v2) ((void) 0)
|
| -#define ASSERT_LE(v1, v2) ((void) 0)
|
| #define SLOW_ASSERT(condition) ((void) 0)
|
| #endif
|
| // Static asserts has no impact on runtime performance, so they can be
|
|
|