From: Blub Date: Sun, 28 Mar 2010 03:59:00 +0000 (+0000) Subject: (Commit created by redmine exporter script from page "NewQC" version 6) X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=658343795dd8eb92f0f466e9f6810339c3987b70;p=xonotic%2Fxonotic.wiki.git (Commit created by redmine exporter script from page "NewQC" version 6) --- diff --git a/NewQC.textile b/NewQC.textile index fa9342c..4024c6f 100644 --- a/NewQC.textile +++ b/NewQC.textile @@ -8,7 +8,7 @@ In fteqcc there are some ambiguities regarding fieldpointers, function pointers, A clean syntax is needed, *SUGGESTIONS ARE WELCOME*, my(blub's) current suggestion is: |_.definition|_.meaning| -|float foo(void)| *function pointer*| +|float foo(void)| function |float foo*(void)| function pointer| |.float foo(void)| member: method/function pointer| |..float foo(void)|/2. member: method/function pointer returning .float| @@ -22,7 +22,7 @@ Additionally, at places where the definition of members or global functions is n So inside parameterlists or a functionbody the list is as follows: |_.definition|_.meaning| -|float foo(void)| function| +|float foo(void)| *function pointer*| |float foo*(void)| function pointer| |.float foo(void)| *fieldpointer: method/function pointer*| |..float foo(void)|/2. *fieldpointer: method/function pointer returning .float*|