diff options
author | Martin Nowack <m.nowack@imperial.ac.uk> | 2018-07-29 20:46:44 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2018-09-06 13:35:19 +0100 |
commit | 0f1b68e093dfe0357adf400ea7b4746f09fb4cba (patch) | |
tree | 27d5b257db6a0bf9b2dbda9fdb97303ccc0ea80f | |
parent | cdce3e8385927bf2cf2a21902d6563ecea37262c (diff) | |
download | klee-0f1b68e093dfe0357adf400ea7b4746f09fb4cba.tar.gz |
Fix missing includes and declarations
-rw-r--r-- | include/klee/SolverImpl.h | 2 | ||||
-rw-r--r-- | lib/Core/MemoryManager.h | 3 | ||||
-rw-r--r-- | lib/Core/SeedInfo.h | 1 |
3 files changed, 5 insertions, 1 deletions
diff --git a/include/klee/SolverImpl.h b/include/klee/SolverImpl.h index c17082a8..615f20c5 100644 --- a/include/klee/SolverImpl.h +++ b/include/klee/SolverImpl.h @@ -10,6 +10,8 @@ #ifndef KLEE_SOLVERIMPL_H #define KLEE_SOLVERIMPL_H +#include "Solver.h" + #include <vector> namespace klee { diff --git a/lib/Core/MemoryManager.h b/lib/Core/MemoryManager.h index cc2073d8..d7233a80 100644 --- a/lib/Core/MemoryManager.h +++ b/lib/Core/MemoryManager.h @@ -10,8 +10,9 @@ #ifndef KLEE_MEMORYMANAGER_H #define KLEE_MEMORYMANAGER_H +#include <cstddef> #include <set> -#include <stdint.h> +#include <cstdint> namespace llvm { class Value; diff --git a/lib/Core/SeedInfo.h b/lib/Core/SeedInfo.h index 0acb130b..1820ef23 100644 --- a/lib/Core/SeedInfo.h +++ b/lib/Core/SeedInfo.h @@ -20,6 +20,7 @@ extern "C" { namespace klee { class ExecutionState; class TimingSolver; + class MemoryObject; class SeedInfo { public: |