diff options
author | walkingeyerobot <mitch@thefoley.net> | 2023-10-03 14:37:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-03 11:37:04 -0700 |
commit | b14b2e3e931d421da1738da70369451402495c42 (patch) | |
tree | 5bf6f9b16b84fe8a00e14f946456cdb38a5e919c /src/emscripten-optimizer | |
parent | 0fe08192d866f72d0f4e680c862bb7af48dec1ac (diff) | |
download | binaryen-b14b2e3e931d421da1738da70369451402495c42.tar.gz binaryen-b14b2e3e931d421da1738da70369451402495c42.tar.bz2 binaryen-b14b2e3e931d421da1738da70369451402495c42.zip |
[NFC] Mark operator== as const (#5990)
C++20 will automatically generate an operator== with reversed operand order,
which is ambiguous with the written operator== when one argument is marked
const and the other isn't.
Diffstat (limited to 'src/emscripten-optimizer')
-rw-r--r-- | src/emscripten-optimizer/simple_ast.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emscripten-optimizer/simple_ast.h b/src/emscripten-optimizer/simple_ast.h index e4c886dd8..ecb0e22ea 100644 --- a/src/emscripten-optimizer/simple_ast.h +++ b/src/emscripten-optimizer/simple_ast.h @@ -287,7 +287,7 @@ struct Value { return *this; } - bool operator==(const Value& other) { + bool operator==(const Value& other) const { if (type != other.type) { return false; } |