about summary refs log tree commit diff homepage
path: root/stp/AST/genkinds.pl
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-04-05 04:01:35 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-04-05 04:01:35 +0000
commiteaa01d355abd0e69bfec9d5b61f1330f42ff1fe8 (patch)
treead2d3b1689b69b87254a58197246a4fce6e537d5 /stp/AST/genkinds.pl
parent40feb785ee98ead840f043f336a5d403c9752b94 (diff)
downloadklee-eaa01d355abd0e69bfec9d5b61f1330f42ff1fe8.tar.gz
STP: Remove stray semi-colons.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@100391 91177308-0d34-0410-b5e6-96231b3b80d8
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);
 }