diff options
author | Joan Karadimov <joan.karadimov@gmail.com> | 2021-10-22 01:19:27 +0300 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-06-09 12:53:09 +0100 |
commit | cfb08c342eee277357409b154721e939b34f56cc (patch) | |
tree | aaa45cb990cc0f7f1018104e6734cbd0965af3cb | |
parent | af591f2068d0363c92d9756ca39c43db85e5804c (diff) |
refactor: include a missing <limits> header in fs.cpp
... needed for std::numeric_limits<T>::max on WIN32
Github-Pull: #23335
Rebased-From: 077a875d94b51e3c87381133657be98989c8643e
-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 3aba47976c..5e1d7af7ab 100644 --- a/src/fs.cpp +++ b/src/fs.cpp @@ -16,6 +16,7 @@ #define NOMINMAX #endif #include <codecvt> +#include <limits> #include <windows.h> #endif |