diff options
| author | 2020-07-16 13:22:55 -0400 | |
|---|---|---|
| committer | 2020-07-16 13:22:58 -0400 | |
| commit | 201514cb507257630b290000b8ea894f5403ce2f (patch) | |
| tree | e71d79350680a537d990f5c407791c4627fe84e8 /src | |
| parent | Merge pull request #4261 from ameerj/gc-calibration (diff) | |
| download | yuzu-201514cb507257630b290000b8ea894f5403ce2f.tar.gz yuzu-201514cb507257630b290000b8ea894f5403ce2f.tar.xz yuzu-201514cb507257630b290000b8ea894f5403ce2f.zip | |
cpu_manager: Add missing includes
Previously this header was relying on indirect inclusions that are no
longer satisfied.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/cpu_manager.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/cpu_manager.h b/src/core/cpu_manager.h index 35929ed94..d685674bb 100644 --- a/src/core/cpu_manager.h +++ b/src/core/cpu_manager.h | |||
| @@ -9,6 +9,9 @@ | |||
| 9 | #include <functional> | 9 | #include <functional> |
| 10 | #include <memory> | 10 | #include <memory> |
| 11 | #include <thread> | 11 | #include <thread> |
| 12 | |||
| 13 | #include "common/fiber.h" | ||
| 14 | #include "common/thread.h" | ||
| 12 | #include "core/hardware_properties.h" | 15 | #include "core/hardware_properties.h" |
| 13 | 16 | ||
| 14 | namespace Common { | 17 | namespace Common { |