about summary refs log tree commit diff homepage
path: root/stp/AST/genkinds.pl
diff options
context:
space:
mode:
Diffstat (limited to 'stp/AST/genkinds.pl')
-rwxr-xr-xstp/AST/genkinds.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/stp/AST/genkinds.pl b/stp/AST/genkinds.pl
index 7944832b..672481ad 100755
--- a/stp/AST/genkinds.pl
+++ b/stp/AST/genkinds.pl
@@ -83,7 +83,7 @@ sub gen_h_file {
 	"/** Prints symbolic name of kind */\n",
 	"inline ostream& operator<<(ostream &os, const Kind &kind) { os << _kind_names[kind]; return os; }\n",
 	"\n\n",
-	"};  // end namespace\n",
+	"}  // end namespace\n",
 	"\n\n#endif\n";
 
     close(HFILE);
@@ -112,7 +112,7 @@ sub gen_cpp_file {
     }
     print CPPFILE 
 	"};\n",
-	"\n};  // end namespace\n";
+	"\n}  // end namespace\n";
 
     close(CPPFILE);
 }