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

... needed for std::numeric_limits<T>::max on WIN32

Github-Pull: #23335
Rebased-From: 077a875d94
This commit is contained in:
Joan Karadimov 2021-10-22 01:19:27 +03:00 committed by fanquake
parent af591f2068
commit cfb08c342e
No known key found for this signature in database
GPG key ID: 2EEB9F5CC09526C1

View file

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