diff options
author | Lioncash <mathew1800@gmail.com> | 2018-09-02 10:53:06 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-09-02 12:38:14 -0400 |
commit | a40537314405d62baa012836da9bba24ad4b02e5 (patch) | |
tree | e713eda9ce20870d7e803989d555e7842eab3415 /src/yuzu/game_list_p.h | |
parent | 325f3e0693ab503b308d28958415de0072b46555 (diff) |
vfs_real: Forward declare IOFile
Eliminates the need to rebuild some source files if the file_util header
ever changes. This also uncovered some indirect inclusions, which have
also been fixed.
Diffstat (limited to 'src/yuzu/game_list_p.h')
-rw-r--r-- | src/yuzu/game_list_p.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/yuzu/game_list_p.h b/src/yuzu/game_list_p.h index 3624cb21a..4ddd8cd88 100644 --- a/src/yuzu/game_list_p.h +++ b/src/yuzu/game_list_p.h @@ -4,18 +4,23 @@ #pragma once +#include <algorithm> #include <array> #include <atomic> #include <map> #include <memory> +#include <string> #include <unordered_map> #include <utility> + #include <QCoreApplication> #include <QImage> #include <QObject> #include <QRunnable> #include <QStandardItem> #include <QString> + +#include "common/common_types.h" #include "common/logging/log.h" #include "common/string_util.h" #include "yuzu/ui_settings.h" |