summaryrefslogtreecommitdiffstats
path: root/src/core/reporter.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-07-05 23:40:51 +0200
committerLioncash <mathew1800@gmail.com>2019-07-05 23:45:34 +0200
commit48807e9a24e7e75344076547799b083f40def8fc (patch)
tree9589dcdf6f62b6f18fe2d0000b8d987b472212fc /src/core/reporter.cpp
parentcore/reporter: Add missing includes and forward declarations (diff)
downloadyuzu-48807e9a24e7e75344076547799b083f40def8fc.tar
yuzu-48807e9a24e7e75344076547799b083f40def8fc.tar.gz
yuzu-48807e9a24e7e75344076547799b083f40def8fc.tar.bz2
yuzu-48807e9a24e7e75344076547799b083f40def8fc.tar.lz
yuzu-48807e9a24e7e75344076547799b083f40def8fc.tar.xz
yuzu-48807e9a24e7e75344076547799b083f40def8fc.tar.zst
yuzu-48807e9a24e7e75344076547799b083f40def8fc.zip
Diffstat (limited to 'src/core/reporter.cpp')
-rw-r--r--src/core/reporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/reporter.cpp b/src/core/reporter.cpp
index dbc350070..6ea26fda7 100644
--- a/src/core/reporter.cpp
+++ b/src/core/reporter.cpp
@@ -34,7 +34,7 @@ std::string GetTimestamp() {
using namespace nlohmann;
-void SaveToFile(const json& json, const std::string& filename) {
+void SaveToFile(json json, const std::string& filename) {
if (!FileUtil::CreateFullPath(filename)) {
LOG_ERROR(Core, "Failed to create path for '{}' to save report!", filename);
return;