From ca4697e725344fbe1bde83ef75a4e53bd74e1b1a Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Tue, 25 Apr 2017 10:27:15 +0200 Subject: [PATCH] src: remove GTEST_DONT_DEFINE_ASSERT_EQ in util.h As indicated by the FIXME comment, this macro guard is no longer needed. --- src/util.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/util.h b/src/util.h index c924209a3c8c45..175db0c82cb725 100644 --- a/src/util.h +++ b/src/util.h @@ -124,14 +124,6 @@ template using remove_reference = std::remove_reference; } \ } while (0) -// FIXME(bnoordhuis) cctests don't link in node::Abort() and node::Assert(). -#ifdef GTEST_DONT_DEFINE_ASSERT_EQ -#undef ABORT -#undef CHECK -#define ABORT ABORT_NO_BACKTRACE -#define CHECK assert -#endif - #ifdef NDEBUG #define ASSERT(expr) #else