Fix DCHECK

GitOrigin-RevId: 57ad1b375fed6fe3401c2c6ee5237739900ef4b7
This commit is contained in:
Arseny Smirnov 2019-02-13 13:33:14 +03:00
parent b336c8466e
commit 06f9533a5a

View File

@ -15,9 +15,9 @@
// clang-format off
#ifdef NDEBUG
#define DCHECK CHECK
#else
#define DCHECK TD_DUMMY_CHECK
#else
#define DCHECK CHECK
#endif
// clang-format on