summaryrefslogtreecommitdiffstats
path: root/src/core/loader/loader.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-15 11:38:37 +0200
committerLioncash <mathew1800@gmail.com>2018-08-15 11:52:37 +0200
commit87d8a9c98626be491e87e4b9fad84b862d8aa0c9 (patch)
treed242adb55cd5998b6f5ee20462717d6a916bb552 /src/core/loader/loader.h
parentMerge pull request #1067 from lioncash/init (diff)
downloadyuzu-87d8a9c98626be491e87e4b9fad84b862d8aa0c9.tar
yuzu-87d8a9c98626be491e87e4b9fad84b862d8aa0c9.tar.gz
yuzu-87d8a9c98626be491e87e4b9fad84b862d8aa0c9.tar.bz2
yuzu-87d8a9c98626be491e87e4b9fad84b862d8aa0c9.tar.lz
yuzu-87d8a9c98626be491e87e4b9fad84b862d8aa0c9.tar.xz
yuzu-87d8a9c98626be491e87e4b9fad84b862d8aa0c9.tar.zst
yuzu-87d8a9c98626be491e87e4b9fad84b862d8aa0c9.zip
Diffstat (limited to '')
-rw-r--r--src/core/loader/loader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h
index 6dffe451a..b74cfbf8a 100644
--- a/src/core/loader/loader.h
+++ b/src/core/loader/loader.h
@@ -5,6 +5,7 @@
#pragma once
#include <algorithm>
+#include <iosfwd>
#include <memory>
#include <string>
#include <utility>
@@ -94,8 +95,7 @@ enum class ResultStatus : u16 {
ErrorNoControl,
};
-std::string GetMessageForResultStatus(ResultStatus status);
-std::string GetMessageForResultStatus(u16 status);
+std::ostream& operator<<(std::ostream& os, ResultStatus status);
/// Interface for loading an application
class AppLoader : NonCopyable {