diff options
Diffstat (limited to 'src/Common/SystemBackend.h')
-rw-r--r-- | src/Common/SystemBackend.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Common/SystemBackend.h b/src/Common/SystemBackend.h index 8942ff0..9157e07 100644 --- a/src/Common/SystemBackend.h +++ b/src/Common/SystemBackend.h @@ -52,12 +52,12 @@ class SystemBackend { virtual ~SystemBackend() {} - virtual UptimeInfo getUptimeInfo() const { + virtual UptimeInfo getUptimeInfo() { UptimeInfo ret = {0, 0}; return ret; } - virtual MemoryInfo getMemoryInfo() const { + virtual MemoryInfo getMemoryInfo() { MemoryInfo ret = {0, 0, 0, 0}; return ret; } |