summaryrefslogtreecommitdiff
path: root/src/insert_completer.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2015-12-27 23:28:34 +0000
committerMaxime Coste <frrrwww@gmail.com>2015-12-27 23:28:34 +0000
commit5217089902b81bcf318ea1d7f420524d86ed0464 (patch)
tree64e5f17b2607c98394fc7083ebbae7dc78924105 /src/insert_completer.hh
parent11652ce2301632f9bef5af32e119ec15c8540865 (diff)
Fix uses of non-keyword logical operators (replace &&, || and ! with and, or and not)
Diffstat (limited to 'src/insert_completer.hh')
-rw-r--r--src/insert_completer.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/insert_completer.hh b/src/insert_completer.hh
index 64c54758..2de8a000 100644
--- a/src/insert_completer.hh
+++ b/src/insert_completer.hh
@@ -23,7 +23,7 @@ struct InsertCompleterDesc
{ return mode == other.mode and param == other.param; }
bool operator!=(const InsertCompleterDesc& other) const
- { return !(*this == other); }
+ { return not (*this == other); }
Mode mode;
Optional<String> param;