Skip to content

Commit 5bb06e8

Browse files
danbevaddaleax
authored andcommitted
src: remove GTEST_DONT_DEFINE_ASSERT_EQ in util.h
As indicated by the FIXME comment, this macro guard is no longer needed. PR-URL: #12638 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
1 parent e927809 commit 5bb06e8

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/util.h

-8
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,6 @@ template <typename T> using remove_reference = std::remove_reference<T>;
124124
} \
125125
} while (0)
126126

127-
// FIXME(bnoordhuis) cctests don't link in node::Abort() and node::Assert().
128-
#ifdef GTEST_DONT_DEFINE_ASSERT_EQ
129-
#undef ABORT
130-
#undef CHECK
131-
#define ABORT ABORT_NO_BACKTRACE
132-
#define CHECK assert
133-
#endif
134-
135127
#ifdef NDEBUG
136128
#define ASSERT(expr)
137129
#else

0 commit comments

Comments
 (0)