diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2019-07-30 12:34:27 +0100 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-07-30 21:40:30 +0100 |
commit | 5732990c805948249bdc3d43a52cfe050ad66a95 (patch) | |
tree | d0869133c9a27f3478d3c08e13ff9593a32d9ea6 /include | |
parent | 9b3c98850572f0729afe97ffde16d05a7e6e691b (diff) | |
download | klee-5732990c805948249bdc3d43a52cfe050ad66a95.tar.gz |
Use #include "klee/..." (instead of #include <klee/...>) consistently.
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/Expr/ExprSMTLIBPrinter.h | 8 | ||||
-rw-r--r-- | include/klee/Internal/Module/Cell.h | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/include/klee/Expr/ExprSMTLIBPrinter.h b/include/klee/Expr/ExprSMTLIBPrinter.h index b042bfeb..a7a604e1 100644 --- a/include/klee/Expr/ExprSMTLIBPrinter.h +++ b/include/klee/Expr/ExprSMTLIBPrinter.h @@ -11,10 +11,10 @@ #ifndef KLEE_EXPRSMTLIBPRINTER_H #define KLEE_EXPRSMTLIBPRINTER_H -#include <klee/Expr/Constraints.h> -#include <klee/Expr/Expr.h> -#include <klee/Solver.h> -#include <klee/util/PrintContext.h> +#include "klee/Expr/Constraints.h" +#include "klee/Expr/Expr.h" +#include "klee/Solver.h" +#include "klee/util/PrintContext.h" #include <map> #include <set> diff --git a/include/klee/Internal/Module/Cell.h b/include/klee/Internal/Module/Cell.h index abdce3f6..c7d9ae18 100644 --- a/include/klee/Internal/Module/Cell.h +++ b/include/klee/Internal/Module/Cell.h @@ -10,7 +10,7 @@ #ifndef KLEE_CELL_H #define KLEE_CELL_H -#include <klee/Expr/Expr.h> +#include "klee/Expr/Expr.h" namespace klee { class MemoryObject; |