From 22a85bd4e1f6005455b91bb3edff68d4019526a1 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 27 Jun 2026 13:05:03 +0100 Subject: Increase size field to 64bit and fix scan types 2^31 not big enough for large file downloads, bumped to 64bit. Replace woolly types with specific uintXX_t in scn call. --- src/ingestor.hpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/ingestor.hpp') diff --git a/src/ingestor.hpp b/src/ingestor.hpp index 8808ed8..ce4ac09 100644 --- a/src/ingestor.hpp +++ b/src/ingestor.hpp @@ -61,9 +61,10 @@ namespace WebStat { virtual ~Ingestor(); SPECIAL_MEMBERS_DELETE(Ingestor); - using ScanResult = decltype(scn::scan(std::declval(), "")); + using ScanResult + = decltype(scn::scan( + std::declval(), "")); using ScanValues = std::remove_cvref_t()->values())>; [[nodiscard]] static ScanResult scanLogLine(std::string_view); -- cgit v1.3