summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/process.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-11-20 17:46:17 -0500
committerGravatar Lioncash2018-11-20 17:46:20 -0500
commit31d1e06eb1ece9c7daa480d2fa5e92a71c95291f (patch)
treeaedfd24916bb0f7cb10f4ce8b8372bc33ecedd47 /src/core/hle/kernel/process.cpp
parentMerge pull request #1667 from DarkLordZach/swkbd (diff)
downloadyuzu-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/core/hle/kernel/process.cpp')
-rw-r--r--src/core/hle/kernel/process.cpp1
1 files changed, 1 insertions, 0 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"