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

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

Github-Pull: #23335
Rebased-From: 077a875d94
(cherry picked from commit 282863a7e9ddfb14ef02182945ca1978699dbe52)
This commit is contained in:
Joan Karadimov 2021-10-22 01:19:27 +03:00 committed by Pablo Greco
parent 5ce127803e
commit 48a01ec059

View file

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