From: trevor_hansen Date: Tue, 12 Jul 2011 11:58:32 +0000 (+0000) Subject: Fix to get it compiling with Cygwin. Thanks to Marzio De Biasi. X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=dc7e70aae4590fe38cc1777162f64ea62f41cb42;p=francis%2Fstp.git Fix to get it compiling with Cygwin. Thanks to Marzio De Biasi. git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@1370 e59a4935-1847-0410-ae03-e826735625c1 --- diff --git a/src/sat/utils/System.cc b/src/sat/utils/System.cc index db32754..929ac32 100644 --- a/src/sat/utils/System.cc +++ b/src/sat/utils/System.cc @@ -92,4 +92,6 @@ double Minisat::memUsedPeak(void) { return memUsed();} #else double Minisat::memUsed() { return 0; } +double Minisat::memUsedPeak(void) +{ return 0;} #endif