refactor: include a missing <limits> header in fs.cpp

... needed for std::numeric_limits<T>::max on WIN32
This commit is contained in:
Joan Karadimov 2021-10-22 01:19:27 +03:00
parent 12ff8993bc
commit 077a875d94

View file

@ -16,6 +16,7 @@
#define NOMINMAX
#endif
#include <codecvt>
#include <limits>
#include <windows.h>
#endif