diff options
| author | 2022-01-09 18:29:59 -0800 | |
|---|---|---|
| committer | 2022-01-09 18:29:59 -0800 | |
| commit | b3308830b217cbdd9638b11e8660d079e16b3f01 (patch) | |
| tree | 59866b89fe1f5b29f40ace68e6e20badc7c38d30 /src/common/logging/log.h | |
| parent | Merge pull request #7687 from german77/tas_handle (diff) | |
| parent | logging/log.h: move enum class formatter to a separate file ... (diff) | |
| download | yuzu-b3308830b217cbdd9638b11e8660d079e16b3f01.tar.gz yuzu-b3308830b217cbdd9638b11e8660d079e16b3f01.tar.xz yuzu-b3308830b217cbdd9638b11e8660d079e16b3f01.zip | |
Merge pull request #7683 from liushuyu/fmt-8.1
logging: adapt to changes in fmt 8.1
Diffstat (limited to 'src/common/logging/log.h')
| -rw-r--r-- | src/common/logging/log.h | 3 |
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 @@ | |||
| 7 | #include <algorithm> | 7 | #include <algorithm> |
| 8 | #include <string_view> | 8 | #include <string_view> |
| 9 | 9 | ||
| 10 | #include <fmt/core.h> | 10 | #include <fmt/format.h> |
| 11 | 11 | ||
| 12 | #include "common/logging/formatter.h" | ||
| 12 | #include "common/logging/types.h" | 13 | #include "common/logging/types.h" |
| 13 | 14 | ||
| 14 | namespace Common::Log { | 15 | namespace Common::Log { |