diff options
author | bunnei <bunneidev@gmail.com> | 2021-10-05 19:05:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-05 19:05:46 +0200 |
commit | 5b2fa8dd418d82b51acdc6849fafbc6a2e858fa9 (patch) | |
tree | 879f5fb79a0d320cb56a5e66eab783de9614d88a /src/core/hle/service | |
parent | Merge pull request #7103 from Morph1984/service-ctx-event (diff) | |
parent | common/logging: Reduce scope of fmt include (diff) | |
download | yuzu-5b2fa8dd418d82b51acdc6849fafbc6a2e858fa9.tar yuzu-5b2fa8dd418d82b51acdc6849fafbc6a2e858fa9.tar.gz yuzu-5b2fa8dd418d82b51acdc6849fafbc6a2e858fa9.tar.bz2 yuzu-5b2fa8dd418d82b51acdc6849fafbc6a2e858fa9.tar.lz yuzu-5b2fa8dd418d82b51acdc6849fafbc6a2e858fa9.tar.xz yuzu-5b2fa8dd418d82b51acdc6849fafbc6a2e858fa9.tar.zst yuzu-5b2fa8dd418d82b51acdc6849fafbc6a2e858fa9.zip |
Diffstat (limited to 'src/core/hle/service')
-rw-r--r-- | src/core/hle/service/lbl/lbl.cpp | 1 | ||||
-rw-r--r-- | src/core/hle/service/time/system_clock_context_update_callback.h | 1 | ||||
-rw-r--r-- | src/core/hle/service/time/system_clock_core.h | 2 |
3 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/lbl/lbl.cpp b/src/core/hle/service/lbl/lbl.cpp index 24890c830..37ff37277 100644 --- a/src/core/hle/service/lbl/lbl.cpp +++ b/src/core/hle/service/lbl/lbl.cpp @@ -2,6 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <cmath> #include <memory> #include "common/logging/log.h" 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 @@ #pragma once +#include <memory> #include <vector> #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 @@ #pragma once +#include <memory> + #include "common/common_types.h" #include "core/hle/service/time/clock_types.h" |