mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
63aac72328
--HG-- extra : rebase_source : 3cdadf85f6bc471f065d570cb03d2441886d3738
24 lines
667 B
Diff
24 lines
667 B
Diff
diff --git a/mfbt/double-conversion/utils.h b/mfbt/double-conversion/utils.h
|
|
--- a/mfbt/double-conversion/utils.h
|
|
+++ b/mfbt/double-conversion/utils.h
|
|
@@ -31,15 +31,15 @@
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
-#include <assert.h>
|
|
+#include "mozilla/Assertions.h"
|
|
#ifndef ASSERT
|
|
-#define ASSERT(condition) (assert(condition))
|
|
+#define ASSERT(condition) MOZ_ASSERT(condition)
|
|
#endif
|
|
#ifndef UNIMPLEMENTED
|
|
-#define UNIMPLEMENTED() (abort())
|
|
+#define UNIMPLEMENTED() MOZ_CRASH()
|
|
#endif
|
|
#ifndef UNREACHABLE
|
|
-#define UNREACHABLE() (abort())
|
|
+#define UNREACHABLE() MOZ_CRASH()
|
|
#endif
|
|
|
|
// Double operations detection based on target architecture.
|