Update and rename function to member_function

Previous name suggested a free function when it really is a member function.
This commit is contained in:
ennokde 2016-09-17 14:23:23 +02:00 committed by GitHub
parent f53ecec12d
commit 73e8ddcd03

View file

@ -1,8 +1,8 @@
# -*- mode: snippet -*-
# name: function
# name: member_function
# key: mf
# --
${1:type} ${2:Class}::${3:name}(${4:args})${5: const}
{
$0
}
}