summaryrefslogtreecommitdiff
path: root/src/ingestor.hpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2025-08-24 12:00:10 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2025-08-25 16:02:46 +0100
commit7301fe6484dc1b1d652425ad005ccfd214002a87 (patch)
treef12bf0ce0ed7adc3f0aea06cf85858aef8c1fdcb /src/ingestor.hpp
parente30cbf9fef8922abef4cc44ad8628d4eef5d28a9 (diff)
downloadwebstat-7301fe6484dc1b1d652425ad005ccfd214002a87.tar.bz2
webstat-7301fe6484dc1b1d652425ad005ccfd214002a87.tar.xz
webstat-7301fe6484dc1b1d652425ad005ccfd214002a87.zip
Merge storeEntities into a single thing
Add visitSum for tuples and makes storeEntities into a single lambda.
Diffstat (limited to 'src/ingestor.hpp')
-rw-r--r--src/ingestor.hpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/ingestor.hpp b/src/ingestor.hpp
index 458b941..7141515 100644
--- a/src/ingestor.hpp
+++ b/src/ingestor.hpp
@@ -25,11 +25,6 @@ namespace WebStat {
void ingestLog(std::FILE *);
void ingestLogLine(std::string_view);
- template<typename T> [[nodiscard]] size_t storeEntity(const T &) const;
- // NOLINTNEXTLINE(modernize-use-nodiscard); testing exposition only
- size_t storeEntity(Entity) const;
- // NOLINTNEXTLINE(modernize-use-nodiscard); testing exposition only
- size_t storeEntity(std::optional<Entity>) const;
template<typename... T> void storeLogLine(const std::tuple<T...> &) const;
protected: