We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09d1074 commit e1d3927Copy full SHA for e1d3927
Firestore/third_party/abseil-cpp/absl/base/macros.h
@@ -192,11 +192,11 @@ enum LinkerInitialized {
192
// https://akrzemi1.wordpress.com/2017/05/18/asserts-in-constexpr-functions/
193
#if defined(NDEBUG)
194
#define ABSL_ASSERT(expr) \
195
- (false ? static_cast<void>(expr) : static_cast<void>(0))
+ static_cast<void>(false ? static_cast<void>(expr) : static_cast<void>(0))
196
#else
197
198
- (ABSL_PREDICT_TRUE((expr)) ? static_cast<void>(0) \
199
- : [] { assert(false && #expr); }()) // NOLINT
+ static_cast<void>(ABSL_PREDICT_TRUE((expr)) ? static_cast<void>(0) \
+ : [] { assert(false && #expr); }()) // NOLINT
200
#endif
201
202
#ifdef ABSL_HAVE_EXCEPTIONS
0 commit comments