diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-09-22 18:28:21 +0200 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-09-22 18:34:55 +0200 |
commit | 6212df3beb38d0484b6ceedad18be99f107f7d96 (patch) | |
tree | fea1951fc95ba679834f2d690b19cc7b3de2e574 /src/core/reporter.cpp | |
parent | lm: Rename Initialize to Log and implement with manager/reporter (diff) | |
download | yuzu-6212df3beb38d0484b6ceedad18be99f107f7d96.tar yuzu-6212df3beb38d0484b6ceedad18be99f107f7d96.tar.gz yuzu-6212df3beb38d0484b6ceedad18be99f107f7d96.tar.bz2 yuzu-6212df3beb38d0484b6ceedad18be99f107f7d96.tar.lz yuzu-6212df3beb38d0484b6ceedad18be99f107f7d96.tar.xz yuzu-6212df3beb38d0484b6ceedad18be99f107f7d96.tar.zst yuzu-6212df3beb38d0484b6ceedad18be99f107f7d96.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/reporter.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/reporter.cpp b/src/core/reporter.cpp index a465d7421..6f4af77fd 100644 --- a/src/core/reporter.cpp +++ b/src/core/reporter.cpp @@ -8,7 +8,6 @@ #include <fmt/chrono.h> #include <fmt/format.h> #include <fmt/ostream.h> -#include <fmt/time.h> #include <json.hpp> #include "common/file_util.h" @@ -393,11 +392,11 @@ void Reporter::SaveLogReport(u32 destination, std::vector<Service::LM::LogMessag out["type"] = fmt::format("{}", kv.first); out["data"] = Service::LM::FormatField(kv.first, kv.second); - return std::move(out); + return out; }); out["fields"] = std::move(fields); - return std::move(out); + return out; }); out["log_messages"] = std::move(json_messages); |