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/main.cpp | |
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/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index cfc48a416..fd73b8541 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -18,6 +18,7 @@ #include <QtWidgets> #include <fmt/format.h> #include "common/common_paths.h" +#include "common/file_util.h" #include "common/logging/backend.h" #include "common/logging/filter.h" #include "common/logging/log.h" |