From ae6a3dbe5e14ab7f0b6f523ee22cb6440428ae6e Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Mon, 11 Jul 2022 23:14:50 +0100 Subject: [PATCH] Add missing includes for `std::tm` --- Source/objects.cpp | 4 +++- Source/qol/chatlog.cpp | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Source/objects.cpp b/Source/objects.cpp index 49195a5c5..5b360b61e 100644 --- a/Source/objects.cpp +++ b/Source/objects.cpp @@ -3,9 +3,11 @@ * * Implementation of object functionality, interaction, spawning, loading, etc. */ -#include #include #include +#include + +#include #include diff --git a/Source/qol/chatlog.cpp b/Source/qol/chatlog.cpp index 040980050..a65bb666d 100644 --- a/Source/qol/chatlog.cpp +++ b/Source/qol/chatlog.cpp @@ -3,10 +3,13 @@ * * Implementation of the in-game chat log. */ -#include +#include + #include #include +#include + #include "DiabloUI/ui_flags.hpp" #include "automap.h" #include "chatlog.h"