Skip to content

Commit

Permalink
include ctime instead of time.h
Browse files Browse the repository at this point in the history
  • Loading branch information
pionere committed Sep 19, 2024
1 parent 7760926 commit 0ca11fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Source/DiabloUI/selhero.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <time.h>
#include <ctime>

#include "../all.h"
#include "DiabloUI/diablo.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/multi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include "all.h"
#include "diabloui.h"
#include "storm/storm_net.h"
#include <time.h>
#include <ctime>
#include "DiabloUI/diablo.h"

DEVILUTION_BEGIN_NAMESPACE
Expand Down
2 changes: 1 addition & 1 deletion Source/pfile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include "diabloui.h"
#include "utils/file_util.h"
#include "DiabloUI/diablo.h"
#include <time.h>
#include <ctime>

DEVILUTION_BEGIN_NAMESPACE

Expand Down

0 comments on commit 0ca11fd

Please sign in to comment.