diff options
author | Sam Clegg <sbc@chromium.org> | 2022-12-01 17:27:59 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-02 01:27:59 +0000 |
commit | 197b6da7afe6ec317011800abf9453402e6beaa5 (patch) | |
tree | 564ae447dc2af116be8948703da85e8d9198f7c4 /src/compiler-support.h | |
parent | f70bc4d6634c5a0b1aa88f3c073b783e83bb5712 (diff) | |
download | binaryen-197b6da7afe6ec317011800abf9453402e6beaa5.tar.gz binaryen-197b6da7afe6ec317011800abf9453402e6beaa5.tar.bz2 binaryen-197b6da7afe6ec317011800abf9453402e6beaa5.zip |
Use C++17's [[maybe_unused]]. NFC (#5309)
Diffstat (limited to 'src/compiler-support.h')
-rw-r--r-- | src/compiler-support.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/compiler-support.h b/src/compiler-support.h index eddb2d7f0..a34859190 100644 --- a/src/compiler-support.h +++ b/src/compiler-support.h @@ -31,14 +31,4 @@ #define WASM_BUILTIN_UNREACHABLE __assume(false) #endif -// The code might contain TODOs or stubs that read some values but do nothing -// with them. The compiler might fail with [-Werror,-Wunused-variable]. -// The WASM_UNUSED(varible) is a wrapper that helps to suppress the error. -#define WASM_UNUSED(expr) \ - do { \ - if (sizeof expr) { \ - (void)0; \ - } \ - } while (0) - #endif // wasm_compiler_support_h |