aboutsummaryrefslogtreecommitdiff
path: root/src/monkey
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-11-08 15:01:05 +0000
committerChristian Grothoff <christian@grothoff.org>2010-11-08 15:01:05 +0000
commit17d052c15feda68e25cd4e2f33fbf1cc2d93a553 (patch)
tree62462eadb08ce024aca9cf4fb8e6968ad3f951d3 /src/monkey
parentd7d280773d90d62408dd3a93ce72745bd1541dc8 (diff)
downloadgnunet-17d052c15feda68e25cd4e2f33fbf1cc2d93a553.tar.gz
gnunet-17d052c15feda68e25cd4e2f33fbf1cc2d93a553.zip
allow const static
Diffstat (limited to 'src/monkey')
-rw-r--r--src/monkey/seaspider/C.jj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/monkey/seaspider/C.jj b/src/monkey/seaspider/C.jj
index ebbaece17..86e000cb5 100644
--- a/src/monkey/seaspider/C.jj
+++ b/src/monkey/seaspider/C.jj
@@ -261,7 +261,7 @@ void VariableDeclaration() : {}
261 261
262void LocalVariableDeclaration() : {} 262void LocalVariableDeclaration() : {}
263{ 263{
264 [ <STATIC> ] VariableDeclaration () 264 [ <CONST> ] [ <STATIC> ] VariableDeclaration ()
265} 265}
266 266
267void VariableClassSpecifier() : {} 267void VariableClassSpecifier() : {}