pretty-print tags on startup

This commit is contained in:
Lion Kortlepel
2023-12-28 12:58:29 +01:00
parent 16d3c6f796
commit 6787843b37
5 changed files with 25 additions and 12 deletions
-11
View File
@@ -52,17 +52,6 @@ TEST_CASE("TrimString") {
CHECK(TrimString("") == "");
}
// TODO: add unit tests to SplitString
static inline void SplitString(std::string const& str, const char delim, std::vector<std::string>& out) {
size_t start;
size_t end = 0;
while ((start = str.find_first_not_of(delim, end)) != std::string::npos) {
end = str.find(delim, start);
out.push_back(str.substr(start, end - start));
}
}
static std::string GetDate() {
std::chrono::system_clock::time_point now = std::chrono::system_clock::now();
time_t tt = std::chrono::system_clock::to_time_t(now);