aboutsummaryrefslogtreecommitdiff
path: root/src/fs.cpp
diff options
context:
space:
mode:
authorJoan Karadimov <joan.karadimov@gmail.com>2021-10-22 01:19:27 +0300
committerJoan Karadimov <joan.karadimov@gmail.com>2021-10-22 04:03:45 +0300
commit077a875d94b51e3c87381133657be98989c8643e (patch)
tree5137e55959f345ecd546298658846948b99cb51f /src/fs.cpp
parent12ff8993bcc7315f4a9b69bf16def980bb0e5197 (diff)
downloadbitcoin-077a875d94b51e3c87381133657be98989c8643e.tar.xz
refactor: include a missing <limits> header in fs.cpp
... needed for std::numeric_limits<T>::max on WIN32
Diffstat (limited to 'src/fs.cpp')
-rw-r--r--src/fs.cpp1
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