From c3721b70441802d24f0525e012d51ffdf6f509c9 Mon Sep 17 00:00:00 2001 From: Martin Brodbeck Date: Mon, 2 Jan 2023 17:52:46 +0100 Subject: [PATCH] cleanup --- src/utils.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/utils.cpp b/src/utils.cpp index b3d9947..6afcf51 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -78,6 +78,12 @@ std::vector parseCsv(const std::string &csv) { } } + //for(const auto& ymd: dates) { + // std::cout << "Current Year: " << static_cast(ymd.date.year()) + // << ", Month: " << static_cast(ymd.date.month()) + // << ", Day: " << static_cast(ymd.date.day()) << '\n'; + //} + return dates; }