my-emacs-d/elpa/yasnippet-20160924.2001/snippets/c++-mode/operator!=

9 lines
174 B
Plaintext
Raw Normal View History

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