diff options
| author | 2020-10-29 03:17:20 -0400 | |
|---|---|---|
| committer | 2020-10-29 03:17:20 -0400 | |
| commit | 9cfc5fee2fe28f2d7f9da45fbe01cbebb03069f1 (patch) | |
| tree | d8b698d123c28d949d74796d008f2a0d849b14fb | |
| parent | Merge pull request #4857 from liushuyu/master (diff) | |
| download | yuzu-9cfc5fee2fe28f2d7f9da45fbe01cbebb03069f1.tar.gz yuzu-9cfc5fee2fe28f2d7f9da45fbe01cbebb03069f1.tar.xz yuzu-9cfc5fee2fe28f2d7f9da45fbe01cbebb03069f1.zip | |
kernel/process: Add missing <ctime> include
Fixes compilation on MSVC
Diffstat (limited to '')
| -rw-r--r-- | src/core/hle/kernel/process.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/process.cpp b/src/core/hle/kernel/process.cpp index 4cc77c635..b17529dee 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 <bitset> | 6 | #include <bitset> |
| 7 | #include <ctime> | ||
| 7 | #include <memory> | 8 | #include <memory> |
| 8 | #include <random> | 9 | #include <random> |
| 9 | #include "common/alignment.h" | 10 | #include "common/alignment.h" |