summaryrefslogtreecommitdiff
path: root/src/core/reporter.h
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.h
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.h')
-rw-r--r--src/core/reporter.h4
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 @@
4 4
5#pragma once 5#pragma once
6 6
7#include <array>
7#include <optional> 8#include <optional>
9#include <string>
8#include <vector> 10#include <vector>
9#include "common/common_types.h" 11#include "common/common_types.h"
10 12
@@ -16,6 +18,8 @@ class HLERequestContext;
16 18
17namespace Core { 19namespace Core {
18 20
21class System;
22
19class Reporter { 23class Reporter {
20public: 24public:
21 explicit Reporter(System& system); 25 explicit Reporter(System& system);