| Index: runtime/third_party/double-conversion/src/utils.h
|
| ===================================================================
|
| --- runtime/third_party/double-conversion/src/utils.h (revision 28496)
|
| +++ runtime/third_party/double-conversion/src/utils.h (working copy)
|
| @@ -33,7 +33,10 @@
|
|
|
| #include <assert.h>
|
| #ifndef ASSERT
|
| -#define ASSERT(condition) (assert(condition))
|
| +#define ASSERT(condition) \
|
| + do { \
|
| + assert(condition); \
|
| + } while (false && (condition))
|
| #endif
|
| #ifndef UNIMPLEMENTED
|
| #define UNIMPLEMENTED() (abort())
|
|
|