summaryrefslogtreecommitdiff
path: root/src/core/precompiled_headers.h
diff options
context:
space:
mode:
authorGravatar ameerj2022-11-29 23:22:03 -0500
committerGravatar ameerj2022-11-30 18:30:30 -0500
commit5b5612c1cc1ef7a4888e7c45e41b15433127a2e5 (patch)
tree8a87cf780fcb5effd7e31e53621e522cfd7ae4e4 /src/core/precompiled_headers.h
parentstring_util: Fix Mingw compile error (diff)
downloadyuzu-5b5612c1cc1ef7a4888e7c45e41b15433127a2e5.tar.gz
yuzu-5b5612c1cc1ef7a4888e7c45e41b15433127a2e5.tar.xz
yuzu-5b5612c1cc1ef7a4888e7c45e41b15433127a2e5.zip
CMake: Consolidate common PCH headers
Diffstat (limited to 'src/core/precompiled_headers.h')
-rw-r--r--src/core/precompiled_headers.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/core/precompiled_headers.h b/src/core/precompiled_headers.h
index d224877ea..30a31001d 100644
--- a/src/core/precompiled_headers.h
+++ b/src/core/precompiled_headers.h
@@ -3,12 +3,9 @@
3 3
4#pragma once 4#pragma once
5 5
6#include <algorithm>
7#include <chrono>
8#include <memory>
9
10#include <boost/container/flat_map.hpp> // used by service.h which is heavily included 6#include <boost/container/flat_map.hpp> // used by service.h which is heavily included
11#include <boost/intrusive/rbtree.hpp> // used by k_auto_object.h which is heavily included 7#include <boost/intrusive/rbtree.hpp> // used by k_auto_object.h which is heavily included
12#include <fmt/format.h>
13 8
14#include "common/assert.h" 9#include "common/common_precompiled_headers.h"
10
11#include "core/hle/kernel/k_process.h"