10 lines
161 B
Plaintext
10 lines
161 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: operator+=
|
|
# key: +=
|
|
# group: operator overloading
|
|
# --
|
|
${1:MyClass}& $1::operator+=(${2:const $1 &rhs})
|
|
{
|
|
$0
|
|
return *this;
|
|
} |