summaryrefslogtreecommitdiff
path: root/src/emscripten-optimizer
diff options
context:
space:
mode:
authorwalkingeyerobot <mitch@thefoley.net>2023-10-03 14:37:04 -0400
committerGitHub <noreply@github.com>2023-10-03 11:37:04 -0700
commitb14b2e3e931d421da1738da70369451402495c42 (patch)
tree5bf6f9b16b84fe8a00e14f946456cdb38a5e919c /src/emscripten-optimizer
parent0fe08192d866f72d0f4e680c862bb7af48dec1ac (diff)
downloadbinaryen-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.h2
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;
}