From 679387a258bc68cd03d457ac30d1961d0333a816 Mon Sep 17 00:00:00 2001 From: shweet Date: Sat, 9 May 2026 22:26:54 -0400 Subject: [PATCH] fixed weird time compile error --- compile_commands.json | 2 +- src/util/time_.cpp | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/compile_commands.json b/compile_commands.json index e2be980..5e95284 120000 --- a/compile_commands.json +++ b/compile_commands.json @@ -1 +1 @@ -/home/anon/sda/Personal/Repos/anm2ed/out/build/linux-release/compile_commands.json \ No newline at end of file +/home/anon/sda/Personal/Repos/anm2ed/build/compile_commands.json \ No newline at end of file diff --git a/src/util/time_.cpp b/src/util/time_.cpp index f16b9e4..047cac0 100644 --- a/src/util/time_.cpp +++ b/src/util/time_.cpp @@ -1,6 +1,9 @@ #include "time_.hpp" #include +#include +#include +#include namespace anm2ed::util::time { @@ -13,4 +16,4 @@ namespace anm2ed::util::time timeString << std::put_time(&localTime, format); return timeString.str(); } -} \ No newline at end of file +}