about summary refs log tree commit diff homepage
path: root/stp/AST/ASTKind.h
diff options
context:
space:
mode:
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