diff options
author | Joan Karadimov <joan.karadimov@gmail.com> | 2021-10-22 01:19:27 +0300 |
---|---|---|
committer | Joan Karadimov <joan.karadimov@gmail.com> | 2021-10-22 04:03:45 +0300 |
commit | 077a875d94b51e3c87381133657be98989c8643e (patch) | |
tree | 5137e55959f345ecd546298658846948b99cb51f /src | |
parent | 12ff8993bcc7315f4a9b69bf16def980bb0e5197 (diff) |
refactor: include a missing <limits> header in fs.cpp
... needed for std::numeric_limits<T>::max on WIN32
Diffstat (limited to 'src')
-rw-r--r-- | src/fs.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fs.cpp b/src/fs.cpp index 8cae7f32c6..7a99444eef 100644 --- a/src/fs.cpp +++ b/src/fs.cpp @@ -16,6 +16,7 @@ #define NOMINMAX #endif #include <codecvt> +#include <limits> #include <windows.h> #endif |