summaryrefslogtreecommitdiff
path: root/src/common/wall_clock.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-11-03 11:00:23 -0800
committerGitHub <noreply@github.com>2020-11-03 11:00:23 -0800
commit222fe75401f0672de78c07ba901e650ccc8aa96a (patch)
treeb3f29608f58df5bc86c502171a5f66e2692ec3d8 /src/common/wall_clock.cpp
parent448e4d5c2a84fcb438fbd85599553daa80228d78 (diff)
parent4a4b685a0420b0ac7c026cd2370c23d54f469976 (diff)
Merge pull request #4873 from lioncash/common-error
common: Enable warnings as errors
Diffstat (limited to 'src/common/wall_clock.cpp')
-rw-r--r--src/common/wall_clock.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/wall_clock.cpp b/src/common/wall_clock.cpp
index 7a20e95b7..452a2837e 100644
--- a/src/common/wall_clock.cpp
+++ b/src/common/wall_clock.cpp
@@ -53,7 +53,7 @@ public:
return Common::Divide128On32(temporary, 1000000000).first;
}
- void Pause(bool is_paused) override {
+ void Pause([[maybe_unused]] bool is_paused) override {
// Do nothing in this clock type.
}