diff options
author | Lioncash <mathew1800@gmail.com> | 2019-07-05 23:19:43 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-07-05 23:45:24 +0200 |
commit | 2321656dbe4eba8105b59576ae4ed486ca65918f (patch) | |
tree | 5af6678d4ac49cc34875510cd60f3dec53be05c5 /src/core/reporter.cpp | |
parent | core/reporter: Remove unnecessary namespace qualifiers (diff) | |
download | yuzu-2321656dbe4eba8105b59576ae4ed486ca65918f.tar yuzu-2321656dbe4eba8105b59576ae4ed486ca65918f.tar.gz yuzu-2321656dbe4eba8105b59576ae4ed486ca65918f.tar.bz2 yuzu-2321656dbe4eba8105b59576ae4ed486ca65918f.tar.lz yuzu-2321656dbe4eba8105b59576ae4ed486ca65918f.tar.xz yuzu-2321656dbe4eba8105b59576ae4ed486ca65918f.tar.zst yuzu-2321656dbe4eba8105b59576ae4ed486ca65918f.zip |
Diffstat (limited to 'src/core/reporter.cpp')
-rw-r--r-- | src/core/reporter.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/reporter.cpp b/src/core/reporter.cpp index d79a9336d..dbc350070 100644 --- a/src/core/reporter.cpp +++ b/src/core/reporter.cpp @@ -2,8 +2,13 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <ctime> #include <fstream> + +#include <fmt/format.h> +#include <fmt/time.h> #include <json.hpp> + #include "common/file_util.h" #include "common/hex_util.h" #include "common/scm_rev.h" @@ -14,7 +19,6 @@ #include "core/hle/result.h" #include "core/reporter.h" #include "core/settings.h" -#include "fmt/time.h" namespace { |