diff options
author | Lioncash <mathew1800@gmail.com> | 2018-11-20 17:46:17 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-11-20 17:46:20 -0500 |
commit | 31d1e06eb1ece9c7daa480d2fa5e92a71c95291f (patch) | |
tree | aedfd24916bb0f7cb10f4ce8b8372bc33ecedd47 /src | |
parent | b6d2c64f4dcb01f1ffc99f9a057910ec65c6a401 (diff) |
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 @@ #include <algorithm> #include <memory> +#include <random> #include "common/assert.h" #include "common/logging/log.h" #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 @@ #include <bitset> #include <cstddef> #include <memory> -#include <random> #include <string> #include <vector> #include <boost/container/static_vector.hpp> |