diff options
author | David <25727384+ogniK5377@users.noreply.github.com> | 2020-10-29 19:03:19 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-29 19:03:19 +1100 |
commit | 89199ca215a53d07683a0aeb105fbd211cd423b0 (patch) | |
tree | d8b698d123c28d949d74796d008f2a0d849b14fb | |
parent | 1a6b1bf1d7d54218d933722a0bfc3d4e6762ac0e (diff) | |
parent | 9cfc5fee2fe28f2d7f9da45fbe01cbebb03069f1 (diff) |
Merge pull request #4859 from Morph1984/missing-ctime-include
kernel/process: Add missing <ctime> include
-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" |