Files
emacs/lisp/yasnippet-snippets/snippets/c++-mode/operator!=
2020-12-05 21:29:49 +01:00

9 lines
171 B
Plaintext

# -*- mode: snippet -*-
# name: operator!=
# key: !=
# group: operator overloading
# --
bool ${1:Name}::operator!=(const $1 &other) const
{
return !(*this == other);
}