diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2022-03-25 21:46:37 +0000 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2022-04-01 13:26:22 +0100 |
commit | dfec2ced4e90e745631331ee087f19224df864a0 (patch) | |
tree | f3b4b2da264cdce6426a52bdd561cdded59c3f32 /lib | |
parent | 1391ef9fb2f433a41f8475d935e8bb5502d539f6 (diff) | |
download | klee-dfec2ced4e90e745631331ee087f19224df864a0.tar.gz |
Remove unnecessary call to deprecated function sqlite3_enable_shared_cache
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Core/StatsTracker.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Core/StatsTracker.cpp b/lib/Core/StatsTracker.cpp index 93dfcbfe..28c52b7f 100644 --- a/lib/Core/StatsTracker.cpp +++ b/lib/Core/StatsTracker.cpp @@ -229,7 +229,6 @@ StatsTracker::StatsTracker(Executor &_executor, std::string _objectFilename, if (OutputStats) { sqlite3_config(SQLITE_CONFIG_SINGLETHREAD); - sqlite3_enable_shared_cache(0); // open database auto db_filename = executor.interpreterHandler->getOutputFilename("run.stats"); |