diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2015-12-27 23:28:34 +0000 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2015-12-27 23:28:34 +0000 |
| commit | 5217089902b81bcf318ea1d7f420524d86ed0464 (patch) | |
| tree | 64e5f17b2607c98394fc7083ebbae7dc78924105 /src/insert_completer.hh | |
| parent | 11652ce2301632f9bef5af32e119ec15c8540865 (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.hh | 2 |
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; |
