Browse Source

Merge pull request #1746 from lioncash/random

kernel/process: Move <random> include to the cpp file
nce_cpp
bunnei 7 years ago
committed by GitHub
parent
commit
7998a4e5b2
  1. 1
      src/core/hle/kernel/process.cpp
  2. 1
      src/core/hle/kernel/process.h

1
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"

1
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>

Loading…
Cancel
Save