Index: sandbox/win/src/Wow64.cc |
diff --git a/sandbox/win/src/Wow64.cc b/sandbox/win/src/Wow64.cc |
index 59df1d6f6741db720e3ac4fbc550f96bbfb2a0c6..60ee13d25877da49683f6972fa74b19ccee2b98c 100644 |
--- a/sandbox/win/src/Wow64.cc |
+++ b/sandbox/win/src/Wow64.cc |
@@ -137,7 +137,7 @@ bool Wow64::WaitForNtdll() { |
} |
bool Wow64::RunWowHelper(void* buffer) { |
- COMPILE_ASSERT(sizeof(buffer) <= sizeof(DWORD), unsupported_64_bits); |
+ static_assert(sizeof(buffer) <= sizeof(DWORD), "unsupported 64 bits"); |
// Get the path to the helper (beside the exe). |
wchar_t prog_name[MAX_PATH]; |