Browse Source
Merge pull request #1746 from lioncash/random
kernel/process: Move <random> include to the cpp file
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
1 additions and
1 deletions
-
src/core/hle/kernel/process.cpp
-
src/core/hle/kernel/process.h
|
|
|
@ -4,6 +4,7 @@ |
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <memory>
|
|
|
|
#include <random>
|
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "core/core.h"
|
|
|
|
|
|
|
|
@ -8,7 +8,6 @@ |
|
|
|
#include <bitset> |
|
|
|
#include <cstddef> |
|
|
|
#include <memory> |
|
|
|
#include <random> |
|
|
|
#include <string> |
|
|
|
#include <vector> |
|
|
|
#include <boost/container/static_vector.hpp> |
|
|
|
|