about summary refs log tree commit diff homepage
path: root/unittests
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2020-04-03 17:55:58 +0100
committerMartinNowack <2443641+MartinNowack@users.noreply.github.com>2020-04-30 09:25:36 +0100
commit382de941118c12434410df0c5d4e1ecd28e4636f (patch)
treef113d764154ca85a7b3afb58efa2a314ee59c419 /unittests
parent7d85ee81dcf23e841ef794fa6ba08a076dcdebf0 (diff)
downloadklee-382de941118c12434410df0c5d4e1ecd28e4636f.tar.gz
Move header files from lib/Expr to include/klee/Expr to eliminate includes using "../"
Diffstat (limited to 'unittests')
-rw-r--r--unittests/Expr/ArrayExprTest.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/unittests/Expr/ArrayExprTest.cpp b/unittests/Expr/ArrayExprTest.cpp
index 47375abd..c7f3806a 100644
--- a/unittests/Expr/ArrayExprTest.cpp
+++ b/unittests/Expr/ArrayExprTest.cpp
@@ -8,14 +8,16 @@
 //===----------------------------------------------------------------------===//
 
 #include "gtest/gtest.h"
-#include <iostream>
 
-#include "../../lib/Expr/ArrayExprOptimizer.h"
 #include "klee/Expr/ArrayCache.h"
+#include "klee/Expr/ArrayExprOptimizer.h"
 #include "klee/Expr/Assignment.h"
 #include "klee/Expr/Expr.h"
+
 #include <llvm/Support/CommandLine.h>
 
+#include <iostream>
+
 using namespace klee;
 namespace klee {
 extern llvm::cl::opt<ArrayOptimizationType> OptimizeArray;