Chromium Code Reviews| Index: src/base/logging.h |
| diff --git a/src/base/logging.h b/src/base/logging.h |
| index 8a9caacb67ab6db0045fe0197b84cce2a7d11927..e4e3f49bfaffa645d575a000e396ca5fd586e871 100644 |
| --- a/src/base/logging.h |
| +++ b/src/base/logging.h |
| @@ -29,7 +29,7 @@ extern "C" V8_NORETURN void V8_Fatal(const char* file, int line, |
| V8_Fatal("", 0, "%s", (msg)) |
| #define UNIMPLEMENTED() \ |
| V8_Fatal("", 0, "unimplemented code") |
| -#define UNREACHABLE() ((void) 0) |
| +#define UNREACHABLE() V8_Fatal("", 0, "unreachable code") |
| #endif |