about summary refs log tree commit diff homepage
path: root/stp/AST/ASTKind.h
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/ASTKind.h
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/ASTKind.h')
-rw-r--r--stp/AST/ASTKind.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/stp/AST/ASTKind.h b/stp/AST/ASTKind.h
index d069fdcf..2480b6e6 100644
--- a/stp/AST/ASTKind.h
+++ b/stp/AST/ASTKind.h
@@ -58,7 +58,7 @@ namespace BEEV {
     WRITE,
     ARRAY,
     BITVECTOR,
-    BOOLEAN,
+    BOOLEAN
 } Kind;
 
 extern unsigned char _kind_categories[];
@@ -73,7 +73,7 @@ extern const char *_kind_names[];
 inline ostream& operator<<(ostream &os, const Kind &kind) { os << _kind_names[kind]; return os; }
 
 
-};  // end namespace
+}  // end namespace
 
 
 #endif