michael@0: diff --git a/mfbt/double-conversion/utils.h b/mfbt/double-conversion/utils.h michael@0: --- a/mfbt/double-conversion/utils.h michael@0: +++ b/mfbt/double-conversion/utils.h michael@0: @@ -31,15 +31,15 @@ michael@0: #include michael@0: #include michael@0: michael@0: -#include michael@0: +#include "mozilla/Assertions.h" michael@0: #ifndef ASSERT michael@0: -#define ASSERT(condition) (assert(condition)) michael@0: +#define ASSERT(condition) MOZ_ASSERT(condition) michael@0: #endif michael@0: #ifndef UNIMPLEMENTED michael@0: -#define UNIMPLEMENTED() (abort()) michael@0: +#define UNIMPLEMENTED() MOZ_CRASH() michael@0: #endif michael@0: #ifndef UNREACHABLE michael@0: -#define UNREACHABLE() (abort()) michael@0: +#define UNREACHABLE() MOZ_CRASH() michael@0: #endif michael@0: michael@0: // Double operations detection based on target architecture.