fixed weird time compile error

This commit is contained in:
2026-05-09 22:26:54 -04:00
parent 2ff6639cd1
commit 679387a258
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
/home/anon/sda/Personal/Repos/anm2ed/out/build/linux-release/compile_commands.json /home/anon/sda/Personal/Repos/anm2ed/build/compile_commands.json
+4 -1
View File
@@ -1,6 +1,9 @@
#include "time_.hpp" #include "time_.hpp"
#include <chrono> #include <chrono>
#include <ctime>
#include <iomanip>
#include <sstream>
namespace anm2ed::util::time namespace anm2ed::util::time
{ {
@@ -13,4 +16,4 @@ namespace anm2ed::util::time
timeString << std::put_time(&localTime, format); timeString << std::put_time(&localTime, format);
return timeString.str(); return timeString.str();
} }
} }