diff options
| author | 2021-10-05 10:05:46 -0700 | |
|---|---|---|
| committer | 2021-10-05 10:05:46 -0700 | |
| commit | 5b2fa8dd418d82b51acdc6849fafbc6a2e858fa9 (patch) | |
| tree | 879f5fb79a0d320cb56a5e66eab783de9614d88a /src/common/logging/log.h | |
| parent | Merge pull request #7103 from Morph1984/service-ctx-event (diff) | |
| parent | common/logging: Reduce scope of fmt include (diff) | |
| download | yuzu-5b2fa8dd418d82b51acdc6849fafbc6a2e858fa9.tar.gz yuzu-5b2fa8dd418d82b51acdc6849fafbc6a2e858fa9.tar.xz yuzu-5b2fa8dd418d82b51acdc6849fafbc6a2e858fa9.zip | |
Merge pull request #7115 from ameerj/log-compile
common/logging: Reduce dependent header include overhead
Diffstat (limited to 'src/common/logging/log.h')
| -rw-r--r-- | src/common/logging/log.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 8d43eddc7..c186d55ef 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h | |||
| @@ -4,7 +4,11 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <fmt/format.h> | 7 | #include <algorithm> |
| 8 | #include <string_view> | ||
| 9 | |||
| 10 | #include <fmt/core.h> | ||
| 11 | |||
| 8 | #include "common/logging/types.h" | 12 | #include "common/logging/types.h" |
| 9 | 13 | ||
| 10 | namespace Common::Log { | 14 | namespace Common::Log { |