summaryrefslogtreecommitdiff
path: root/src/core/reporter.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2019-07-05 17:19:43 -0400
committerGravatar Lioncash2019-07-05 17:45:24 -0400
commit2321656dbe4eba8105b59576ae4ed486ca65918f (patch)
tree5af6678d4ac49cc34875510cd60f3dec53be05c5 /src/core/reporter.cpp
parentcore/reporter: Remove unnecessary namespace qualifiers (diff)
downloadyuzu-2321656dbe4eba8105b59576ae4ed486ca65918f.tar.gz
yuzu-2321656dbe4eba8105b59576ae4ed486ca65918f.tar.xz
yuzu-2321656dbe4eba8105b59576ae4ed486ca65918f.zip
core/reporter: Add missing includes and forward declarations
Adds missing inclusions to prevent potential compilation issues.
Diffstat (limited to 'src/core/reporter.cpp')
-rw-r--r--src/core/reporter.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/reporter.cpp b/src/core/reporter.cpp
index d79a9336d..dbc350070 100644
--- a/src/core/reporter.cpp
+++ b/src/core/reporter.cpp
@@ -2,8 +2,13 @@
2// Licensed under GPLv2 or any later version 2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <ctime>
5#include <fstream> 6#include <fstream>
7
8#include <fmt/format.h>
9#include <fmt/time.h>
6#include <json.hpp> 10#include <json.hpp>
11
7#include "common/file_util.h" 12#include "common/file_util.h"
8#include "common/hex_util.h" 13#include "common/hex_util.h"
9#include "common/scm_rev.h" 14#include "common/scm_rev.h"
@@ -14,7 +19,6 @@
14#include "core/hle/result.h" 19#include "core/hle/result.h"
15#include "core/reporter.h" 20#include "core/reporter.h"
16#include "core/settings.h" 21#include "core/settings.h"
17#include "fmt/time.h"
18 22
19namespace { 23namespace {
20 24