Commit 6668f42e authored by Paul's avatar Paul
Browse files

Fix fail macro

parent 5b4d3989
......@@ -48,7 +48,7 @@ inline void expect_equality(const TLeft& left,
#define STATUS(...) EXPECT((__VA_ARGS__) == 0)
// NOLINTNEXTLINE
#define FAIL(...) failed(__VA_ARGS__, __FILE__, __LINE__)
#define FAIL(...) failed(false, __VA_ARGS__, __FILE__, __LINE__)
template <class F>
bool throws(F f)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment