diff options
| author | 2018-11-20 17:46:17 -0500 | |
|---|---|---|
| committer | 2018-11-20 17:46:20 -0500 | |
| commit | 31d1e06eb1ece9c7daa480d2fa5e92a71c95291f (patch) | |
| tree | aedfd24916bb0f7cb10f4ce8b8372bc33ecedd47 /src | |
| parent | Merge pull request #1667 from DarkLordZach/swkbd (diff) | |
| download | yuzu-31d1e06eb1ece9c7daa480d2fa5e92a71c95291f.tar.gz yuzu-31d1e06eb1ece9c7daa480d2fa5e92a71c95291f.tar.xz yuzu-31d1e06eb1ece9c7daa480d2fa5e92a71c95291f.zip | |
kernel/process: Move <random> include to the cpp file
<random> isn't necesary directly within the header and can be placed in
the cpp file where its needed. Avoids propagating random generation
utilities via a header file.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/kernel/process.cpp | 1 | ||||
| -rw-r--r-- | src/core/hle/kernel/process.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/process.cpp b/src/core/hle/kernel/process.cpp index 1412257a0..7ca538401 100644 --- a/src/core/hle/kernel/process.cpp +++ b/src/core/hle/kernel/process.cpp | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #include <algorithm> | 5 | #include <algorithm> |
| 6 | #include <memory> | 6 | #include <memory> |
| 7 | #include <random> | ||
| 7 | #include "common/assert.h" | 8 | #include "common/assert.h" |
| 8 | #include "common/logging/log.h" | 9 | #include "common/logging/log.h" |
| 9 | #include "core/core.h" | 10 | #include "core/core.h" |
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index 230e395ff..ada845c7f 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h | |||
| @@ -8,7 +8,6 @@ | |||
| 8 | #include <bitset> | 8 | #include <bitset> |
| 9 | #include <cstddef> | 9 | #include <cstddef> |
| 10 | #include <memory> | 10 | #include <memory> |
| 11 | #include <random> | ||
| 12 | #include <string> | 11 | #include <string> |
| 13 | #include <vector> | 12 | #include <vector> |
| 14 | #include <boost/container/static_vector.hpp> | 13 | #include <boost/container/static_vector.hpp> |