summaryrefslogtreecommitdiff
path: root/src/ingestor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ingestor.hpp')
-rw-r--r--src/ingestor.hpp2
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()};