summaryrefslogtreecommitdiff
path: root/src/buildtool/build_engine/expression/expression.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/build_engine/expression/expression.hpp')
-rw-r--r--src/buildtool/build_engine/expression/expression.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/build_engine/expression/expression.hpp b/src/buildtool/build_engine/expression/expression.hpp
index 219a5927..89f5c5ea 100644
--- a/src/buildtool/build_engine/expression/expression.hpp
+++ b/src/buildtool/build_engine/expression/expression.hpp
@@ -210,7 +210,7 @@ class Expression {
template <class T>
[[nodiscard]] auto operator!=(T const& other) const noexcept -> bool {
- return !(*this == other);
+ return not(*this == other);
}
[[nodiscard]] auto operator[](
std::string const& key) const& -> ExpressionPtr const&;