diff options
| author | Dan Goodliffe <dan@randomdan.homeip.net> | 2026-03-22 17:02:40 +0000 |
|---|---|---|
| committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2026-03-22 18:03:14 +0000 |
| commit | d92816a5f55cea9b67b7aab306eb1109af6dcbbe (patch) | |
| tree | 62e0ce096ad713cac22a70f26a401dc5dc9b2808 /src/ingestor.hpp | |
| parent | 05c47ab65e73b16887b7c7a1eb31acf6d364ef41 (diff) | |
| download | webstat-d92816a5f55cea9b67b7aab306eb1109af6dcbbe.tar.bz2 webstat-d92816a5f55cea9b67b7aab306eb1109af6dcbbe.tar.xz webstat-d92816a5f55cea9b67b7aab306eb1109af6dcbbe.zip | |
Add missing -Wshadow
Diffstat (limited to 'src/ingestor.hpp')
| -rw-r--r-- | src/ingestor.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ingestor.hpp b/src/ingestor.hpp index e890bcf..8c4f4c1 100644 --- a/src/ingestor.hpp +++ b/src/ingestor.hpp @@ -81,7 +81,7 @@ namespace WebStat { using LastRunTime = std::chrono::system_clock::time_point; using Impl = unsigned int (Ingestor::*)(); - explicit Job(Impl impl) : impl(impl) { } + explicit Job(Impl jobImpl) : impl(jobImpl) { } const Impl impl; LastRunTime lastRun {LastRunTime::clock::now()}; |
