diff options
author | Timotej Kapus <tk1713@ic.ac.uk> | 2018-10-28 12:49:52 +0000 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-04-04 20:37:41 +0100 |
commit | 572d644e8de439fe59f5598fc902d71b60cf8a85 (patch) | |
tree | 2b6a06d02c2854efc7f916121ef950c75438e325 /lib/Core/StatsTracker.h | |
parent | b1f34f8d0ff890511e16fc322abf3ca08000b950 (diff) | |
download | klee-572d644e8de439fe59f5598fc902d71b60cf8a85.tar.gz |
Clean klee-stats, StatsTracker and cmake
Diffstat (limited to 'lib/Core/StatsTracker.h')
-rw-r--r-- | lib/Core/StatsTracker.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Core/StatsTracker.h b/lib/Core/StatsTracker.h index f09f7638..f1dea77b 100644 --- a/lib/Core/StatsTracker.h +++ b/lib/Core/StatsTracker.h @@ -40,10 +40,10 @@ namespace klee { std::string objectFilename; std::unique_ptr<llvm::raw_fd_ostream> istatsFile; - sqlite3 *statsFile; - sqlite3_stmt *insertStmt; - unsigned writeCount; - unsigned commitEvery; + sqlite3 *statsFile = nullptr; + sqlite3_stmt *insertStmt = nullptr; + std::uint32_t statsCommitEvery; + std::uint32_t statsWriteCount = 0; time::Point startWallTime; unsigned numBranches; |