Add missing class names in FreeBSD-ifdefed code.

This commit is contained in:
Yuri Victorovich 2021-12-29 12:57:23 -08:00 committed by Miodrag Milanovic
parent 3da935785f
commit c84323b5a5
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -86,7 +86,7 @@ double Gluco2::memUsed(void) {
struct rusage ru;
getrusage(RUSAGE_SELF, &ru);
return (double)ru.ru_maxrss / 1024; }
double memUsedPeak(void) { return memUsed(); }
double Gluco2::memUsedPeak(void) { return memUsed(); }
ABC_NAMESPACE_IMPL_END