summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar ameerj2021-09-30 20:59:49 -0400
committerGravatar ameerj2021-10-01 20:48:49 -0400
commit579f4ea4bd34f310fc8e60a4c154981a86727686 (patch)
treeeb9361dd7df50b7ad08a5a6d7b2c2c03e5e4e49f /src
parentcommon/logging: Move Log::Entry declaration to a separate header (diff)
downloadyuzu-579f4ea4bd34f310fc8e60a4c154981a86727686.tar.gz
yuzu-579f4ea4bd34f310fc8e60a4c154981a86727686.tar.xz
yuzu-579f4ea4bd34f310fc8e60a4c154981a86727686.zip
common/logging: Reduce scope of fmt include
Diffstat (limited to 'src')
-rw-r--r--src/common/logging/log.h2
-rw-r--r--src/common/param_package.cpp1
-rw-r--r--src/core/hle/service/time/system_clock_context_update_callback.h1
-rw-r--r--src/core/hle/service/time/system_clock_core.h2
4 files changed, 5 insertions, 1 deletions
diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index 34fd2c30b..c186d55ef 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -7,7 +7,7 @@
7#include <algorithm> 7#include <algorithm>
8#include <string_view> 8#include <string_view>
9 9
10#include <fmt/format.h> 10#include <fmt/core.h>
11 11
12#include "common/logging/types.h" 12#include "common/logging/types.h"
13 13
diff --git a/src/common/param_package.cpp b/src/common/param_package.cpp
index b916b4866..bbf20f5eb 100644
--- a/src/common/param_package.cpp
+++ b/src/common/param_package.cpp
@@ -3,6 +3,7 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <array> 5#include <array>
6#include <stdexcept>
6#include <utility> 7#include <utility>
7#include <vector> 8#include <vector>
8 9
diff --git a/src/core/hle/service/time/system_clock_context_update_callback.h b/src/core/hle/service/time/system_clock_context_update_callback.h
index 797954958..6936397a5 100644
--- a/src/core/hle/service/time/system_clock_context_update_callback.h
+++ b/src/core/hle/service/time/system_clock_context_update_callback.h
@@ -4,6 +4,7 @@
4 4
5#pragma once 5#pragma once
6 6
7#include <memory>
7#include <vector> 8#include <vector>
8 9
9#include "core/hle/service/time/clock_types.h" 10#include "core/hle/service/time/clock_types.h"
diff --git a/src/core/hle/service/time/system_clock_core.h b/src/core/hle/service/time/system_clock_core.h
index 83d0e5d62..b9237ad28 100644
--- a/src/core/hle/service/time/system_clock_core.h
+++ b/src/core/hle/service/time/system_clock_core.h
@@ -4,6 +4,8 @@
4 4
5#pragma once 5#pragma once
6 6
7#include <memory>
8
7#include "common/common_types.h" 9#include "common/common_types.h"
8#include "core/hle/service/time/clock_types.h" 10#include "core/hle/service/time/clock_types.h"
9 11