summaryrefslogtreecommitdiff
path: root/src/prop/bvminisat
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-12-06 01:38:17 +0000
committerMorgan Deters <mdeters@gmail.com>2012-12-06 01:38:17 +0000
commit8c8985f024cec925f774ff32ebccc306be8e4b26 (patch)
tree995253cc03ff5c711b4d1778792692c81961b146 /src/prop/bvminisat
parentbd0a6c39c56c6ad2bf12e7b9fd41db1772fed9cd (diff)
* some build fixes; thanks; thanks to Kunal Ganeshpure for noting these issues
* build bugfix for win32 * also fix a bug re: tuples and records in the datatypes rewriter These fixes are for both trunk and 1.0.x branches.
Diffstat (limited to 'src/prop/bvminisat')
-rw-r--r--src/prop/bvminisat/utils/System.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prop/bvminisat/utils/System.h b/src/prop/bvminisat/utils/System.h
index f9fe708bb..4b4b73cb9 100644
--- a/src/prop/bvminisat/utils/System.h
+++ b/src/prop/bvminisat/utils/System.h
@@ -43,7 +43,7 @@ extern double memUsedPeak(); // Peak-memory in mega bytes (returns 0 for
#if defined(_MSC_VER) || defined(__MINGW32__)
#include <time.h>
-static inline double Minisat::cpuTime(void) { return (double)clock() / CLOCKS_PER_SEC; }
+static inline double BVMinisat::cpuTime(void) { return (double)clock() / CLOCKS_PER_SEC; }
#else
#include <sys/time.h>
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback