summaryrefslogtreecommitdiffstats
path: root/src/sat/glucose/System.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/sat/glucose/System.cpp')
-rw-r--r--src/sat/glucose/System.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sat/glucose/System.cpp b/src/sat/glucose/System.cpp
index 18f2d656..276eddb8 100644
--- a/src/sat/glucose/System.cpp
+++ b/src/sat/glucose/System.cpp
@@ -86,7 +86,7 @@ double Gluco::memUsed(void) {
struct rusage ru;
getrusage(RUSAGE_SELF, &ru);
return (double)ru.ru_maxrss / 1024; }
-double memUsedPeak(void) { return memUsed(); }
+double Gluco::memUsedPeak(void) { return memUsed(); }
ABC_NAMESPACE_IMPL_END