about summary refs log tree commit diff homepage
path: root/lib/Core
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2019-07-30 12:34:27 +0100
committerMartinNowack <martin.nowack@gmail.com>2019-07-30 21:40:30 +0100
commit5732990c805948249bdc3d43a52cfe050ad66a95 (patch)
treed0869133c9a27f3478d3c08e13ff9593a32d9ea6 /lib/Core
parent9b3c98850572f0729afe97ffde16d05a7e6e691b (diff)
downloadklee-5732990c805948249bdc3d43a52cfe050ad66a95.tar.gz
Use #include "klee/..." (instead of #include <klee/...>) consistently.
Diffstat (limited to 'lib/Core')
-rw-r--r--lib/Core/PTree.cpp4
-rw-r--r--lib/Core/PTree.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/Core/PTree.cpp b/lib/Core/PTree.cpp
index 732dc817..67a6e967 100644
--- a/lib/Core/PTree.cpp
+++ b/lib/Core/PTree.cpp
@@ -9,8 +9,8 @@
 
 #include "PTree.h"
 
-#include <klee/Expr/Expr.h>
-#include <klee/Expr/ExprPPrinter.h>
+#include "klee/Expr/Expr.h"
+#include "klee/Expr/ExprPPrinter.h"
 
 #include <vector>
 
diff --git a/lib/Core/PTree.h b/lib/Core/PTree.h
index 3185203f..7618e86e 100644
--- a/lib/Core/PTree.h
+++ b/lib/Core/PTree.h
@@ -10,7 +10,7 @@
 #ifndef KLEE_PTREE_H
 #define KLEE_PTREE_H
 
-#include <klee/Expr/Expr.h>
+#include "klee/Expr/Expr.h"
 
 namespace klee {
   class ExecutionState;