summaryrefslogtreecommitdiffstats
path: root/src/common/logging/log.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-01-10 03:29:59 +0100
committerGitHub <noreply@github.com>2022-01-10 03:29:59 +0100
commitb3308830b217cbdd9638b11e8660d079e16b3f01 (patch)
tree59866b89fe1f5b29f40ace68e6e20badc7c38d30 /src/common/logging/log.h
parentMerge pull request #7687 from german77/tas_handle (diff)
parentlogging/log.h: move enum class formatter to a separate file ... (diff)
downloadyuzu-b3308830b217cbdd9638b11e8660d079e16b3f01.tar
yuzu-b3308830b217cbdd9638b11e8660d079e16b3f01.tar.gz
yuzu-b3308830b217cbdd9638b11e8660d079e16b3f01.tar.bz2
yuzu-b3308830b217cbdd9638b11e8660d079e16b3f01.tar.lz
yuzu-b3308830b217cbdd9638b11e8660d079e16b3f01.tar.xz
yuzu-b3308830b217cbdd9638b11e8660d079e16b3f01.tar.zst
yuzu-b3308830b217cbdd9638b11e8660d079e16b3f01.zip
Diffstat (limited to '')
-rw-r--r--src/common/logging/log.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index c186d55ef..0c80d01ee 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -7,8 +7,9 @@
#include <algorithm>
#include <string_view>
-#include <fmt/core.h>
+#include <fmt/format.h>
+#include "common/logging/formatter.h"
#include "common/logging/types.h"
namespace Common::Log {