diff options
author | Lioncash <mathew1800@gmail.com> | 2019-07-05 17:19:43 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-07-05 17:45:24 -0400 |
commit | 2321656dbe4eba8105b59576ae4ed486ca65918f (patch) | |
tree | 5af6678d4ac49cc34875510cd60f3dec53be05c5 /src | |
parent | e721c344ae2f7267bdf40508eda08bd6c3c6e491 (diff) |
core/reporter: Add missing includes and forward declarations
Adds missing inclusions to prevent potential compilation issues.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/reporter.cpp | 6 | ||||
-rw-r--r-- | src/core/reporter.h | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/core/reporter.cpp b/src/core/reporter.cpp index d79a9336d4..dbc350070d 100644 --- a/src/core/reporter.cpp +++ b/src/core/reporter.cpp @@ -2,8 +2,13 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <ctime> #include <fstream> + +#include <fmt/format.h> +#include <fmt/time.h> #include <json.hpp> + #include "common/file_util.h" #include "common/hex_util.h" #include "common/scm_rev.h" @@ -14,7 +19,6 @@ #include "core/hle/result.h" #include "core/reporter.h" #include "core/settings.h" -#include "fmt/time.h" namespace { diff --git a/src/core/reporter.h b/src/core/reporter.h index 9487a11b67..4266ca5507 100644 --- a/src/core/reporter.h +++ b/src/core/reporter.h @@ -4,7 +4,9 @@ #pragma once +#include <array> #include <optional> +#include <string> #include <vector> #include "common/common_types.h" @@ -16,6 +18,8 @@ class HLERequestContext; namespace Core { +class System; + class Reporter { public: explicit Reporter(System& system); |