aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoan Karadimov <joan.karadimov@gmail.com>2021-10-22 01:19:27 +0300
committerfanquake <fanquake@gmail.com>2022-02-15 09:22:05 +0000
commit282863a7e9ddfb14ef02182945ca1978699dbe52 (patch)
tree5f598b26381bbef0716e1ad92f5e150bf9d7de76
parent7febe4f3c7f482390c4aa6fc528e2ee3fb34b142 (diff)
downloadbitcoin-282863a7e9ddfb14ef02182945ca1978699dbe52.tar.xz
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.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fs.cpp b/src/fs.cpp
index 89c7ad27dc..a7cfa627e1 100644
--- a/src/fs.cpp
+++ b/src/fs.cpp
@@ -16,6 +16,7 @@
#define NOMINMAX
#endif
#include <codecvt>
+#include <limits>
#include <windows.h>
#endif