Fix to include limits header for std::numeric_limits (#2747)

Code using `std::numeric_limits` wasn't including the limits header,
leading to a compilation error in Fedora Rawhide (GCC 11.0).
This commit is contained in:
Philipp Wagner
2021-01-11 11:23:54 -05:00
committed by GitHub
parent 4f1867a4f8
commit b7c26dbea9
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -32,6 +32,7 @@
#include <sstream>
#include <sys/stat.h> // mkdir
#include <list>
#include <limits>
#include <utility>
// clang-format off