summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorennokde <ennokoester@mail.de>2016-09-17 14:23:23 +0200
committerGitHub <noreply@github.com>2016-09-17 14:23:23 +0200
commit73e8ddcd03ca1ea73fc02baa4943343df845d6ef (patch)
treece32e6d24c672f34c6b5cead123509c3dd54b300
parentf53ecec12d95a16baba32603519192301c505b00 (diff)
Update and rename function to member_function
Previous name suggested a free function when it really is a member function.
-rw-r--r--c++-mode/member_function (renamed from c++-mode/function)4
1 files changed, 2 insertions, 2 deletions
diff --git a/c++-mode/function b/c++-mode/member_function
index dacfc11..8b5ee6a 100644
--- a/c++-mode/function
+++ b/c++-mode/member_function
@@ -1,8 +1,8 @@
# -*- mode: snippet -*-
-# name: function
+# name: member_function
# key: mf
# --
${1:type} ${2:Class}::${3:name}(${4:args})${5: const}
{
$0
-} \ No newline at end of file
+}