about summary refs log tree commit diff homepage
path: root/include/expr
diff options
context:
space:
mode:
authorJulian Büning <julian.buening@rwth-aachen.de>2019-05-30 18:21:36 +0200
committerMartinNowack <martin.nowack@gmail.com>2019-06-04 14:14:37 +0100
commitaf97960c8d3761b9fd86dff9ef4eee3999448194 (patch)
treef3d97418992115e79aec68e14a2b6dc232cdfdf7 /include/expr
parent823ee004fa2f24a9c8781e359967b088cb954140 (diff)
downloadklee-af97960c8d3761b9fd86dff9ef4eee3999448194.tar.gz
make include guard naming consistent
Diffstat (limited to 'include/expr')
-rw-r--r--include/expr/Lexer.h4
-rw-r--r--include/expr/Parser.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/include/expr/Lexer.h b/include/expr/Lexer.h
index 290d59eb..75dde388 100644
--- a/include/expr/Lexer.h
+++ b/include/expr/Lexer.h
@@ -7,8 +7,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef KLEE_EXPR_LEXER_H
-#define KLEE_EXPR_LEXER_H
+#ifndef KLEE_LEXER_H
+#define KLEE_LEXER_H
 
 #include <string>
 
diff --git a/include/expr/Parser.h b/include/expr/Parser.h
index fa07bae2..20e6047f 100644
--- a/include/expr/Parser.h
+++ b/include/expr/Parser.h
@@ -7,8 +7,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef KLEE_EXPR_PARSER_H
-#define KLEE_EXPR_PARSER_H
+#ifndef KLEE_PARSER_H
+#define KLEE_PARSER_H
 
 #include "klee/Expr.h"