about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorDan Liew <daniel.liew@imperial.ac.uk>2014-09-12 14:33:28 +0100
committerDaniel Dunbar <daniel@zuster.org>2014-09-16 08:29:10 -0700
commitfbae38cdf9ad3b7ebf7501c46028c3edd6e39b53 (patch)
tree0c6e82679107f81c09bdf61c6deafadd5a2a54c7
parentdc6cb3f8663b668547168aa663a67ff32ebd9e5e (diff)
downloadklee-fbae38cdf9ad3b7ebf7501c46028c3edd6e39b53.tar.gz
Fix #include under LLVM3.5. OwningPtr doesn't exist anymore.
-rw-r--r--tools/kleaver/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/kleaver/main.cpp b/tools/kleaver/main.cpp
index f5c7c67a..17a91907 100644
--- a/tools/kleaver/main.cpp
+++ b/tools/kleaver/main.cpp
@@ -15,7 +15,6 @@
 
 #include "klee/util/ExprSMTLIBLetPrinter.h"
 
-#include "llvm/ADT/OwningPtr.h"
 #include "llvm/ADT/StringExtras.h"
 #include "llvm/Support/CommandLine.h"
 #include "llvm/Support/ManagedStatic.h"
@@ -35,6 +34,7 @@
 #include "llvm/Support/Signals.h"
 
 #if LLVM_VERSION_CODE < LLVM_VERSION(3, 5)
+#include "llvm/ADT/OwningPtr.h"
 #include "llvm/Support/system_error.h"
 #endif