diff options
author | David <25727384+ogniK5377@users.noreply.github.com> | 2020-10-29 09:03:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-29 09:03:19 +0100 |
commit | 89199ca215a53d07683a0aeb105fbd211cd423b0 (patch) | |
tree | d8b698d123c28d949d74796d008f2a0d849b14fb | |
parent | Merge pull request #4857 from liushuyu/master (diff) | |
parent | kernel/process: Add missing <ctime> include (diff) | |
download | yuzu-89199ca215a53d07683a0aeb105fbd211cd423b0.tar yuzu-89199ca215a53d07683a0aeb105fbd211cd423b0.tar.gz yuzu-89199ca215a53d07683a0aeb105fbd211cd423b0.tar.bz2 yuzu-89199ca215a53d07683a0aeb105fbd211cd423b0.tar.lz yuzu-89199ca215a53d07683a0aeb105fbd211cd423b0.tar.xz yuzu-89199ca215a53d07683a0aeb105fbd211cd423b0.tar.zst yuzu-89199ca215a53d07683a0aeb105fbd211cd423b0.zip |
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 @@ #include <algorithm> #include <bitset> +#include <ctime> #include <memory> #include <random> #include "common/alignment.h" |