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/core/reporter.h | |
parent | e721c344ae2f7267bdf40508eda08bd6c3c6e491 (diff) |
core/reporter: Add missing includes and forward declarations
Adds missing inclusions to prevent potential compilation issues.
Diffstat (limited to 'src/core/reporter.h')
-rw-r--r-- | src/core/reporter.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/reporter.h b/src/core/reporter.h index 9487a11b6..4266ca550 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); |