Browse Source

Add missing <ctime> includes for `std::tm`

pull/4976/head
Gleb Mazovetskiy 4 years ago
parent
commit
ae6a3dbe5e
  1. 4
      Source/objects.cpp
  2. 5
      Source/qol/chatlog.cpp

4
Source/objects.cpp

@ -3,9 +3,11 @@
*
* Implementation of object functionality, interaction, spawning, loading, etc.
*/
#include <algorithm>
#include <climits>
#include <cstdint>
#include <ctime>
#include <algorithm>
#include <fmt/core.h>

5
Source/qol/chatlog.cpp

@ -3,10 +3,13 @@
*
* Implementation of the in-game chat log.
*/
#include <fmt/format.h>
#include <ctime>
#include <string>
#include <vector>
#include <fmt/format.h>
#include "DiabloUI/ui_flags.hpp"
#include "automap.h"
#include "chatlog.h"

Loading…
Cancel
Save