summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/process.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-11-20 16:12:29 -0800
committerGravatar GitHub2018-11-20 16:12:29 -0800
commit67486c056895189a4b48695422d2630c1d300bd0 (patch)
tree04770d592ba87c919d44da844b3fa941bca35286 /src/core/hle/kernel/process.cpp
parentMerge pull request #1748 from lioncash/assert (diff)
parentkernel/process: Move <random> include to the cpp file (diff)
downloadyuzu-67486c056895189a4b48695422d2630c1d300bd0.tar.gz
yuzu-67486c056895189a4b48695422d2630c1d300bd0.tar.xz
yuzu-67486c056895189a4b48695422d2630c1d300bd0.zip
Merge pull request #1746 from lioncash/random
kernel/process: Move <random> include to the cpp 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"