about summary refs log tree commit diff homepage
path: root/lib/Core/Searcher.h
diff options
context:
space:
mode:
authorMartin Nowack <martin@se.inf.tu-dresden.de>2014-05-29 23:21:33 +0200
committerMartin Nowack <martin@se.inf.tu-dresden.de>2014-05-29 23:57:45 +0200
commit3b35ffed89405e7ba3059664dfbdc165b5d8625d (patch)
treef14817333f73342d70b267cc89c0ab70a7a151bb /lib/Core/Searcher.h
parentd934d983692c8952cdb887cbcd59f2df0001b9c0 (diff)
downloadklee-3b35ffed89405e7ba3059664dfbdc165b5d8625d.tar.gz
Remove #include <iostream> to avoid static constructors
iostream injects static constructor function into every compilation unit.
Remove this to avoid it.
Diffstat (limited to 'lib/Core/Searcher.h')
-rw-r--r--lib/Core/Searcher.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Core/Searcher.h b/lib/Core/Searcher.h
index 3c077636..d866f521 100644
--- a/lib/Core/Searcher.h
+++ b/lib/Core/Searcher.h
@@ -10,14 +10,12 @@
 #ifndef KLEE_SEARCHER_H
 #define KLEE_SEARCHER_H
 
+#include "llvm/Support/raw_ostream.h"
 #include <vector>
 #include <set>
 #include <map>
 #include <queue>
 
-// FIXME: Move out of header, use llvm streams.
-#include <ostream>
-
 namespace llvm {
   class BasicBlock;
   class Function;