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 16:23:54 +00:00 committed by GitHub
parent 4f1867a4f8
commit b7c26dbea9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -32,6 +32,7 @@
#include <sstream>
#include <sys/stat.h> // mkdir
#include <list>
#include <limits>
#include <utility>
// clang-format off

View File

@ -46,6 +46,7 @@
#include "V3Stats.h"
#include <map>
#include <limits>
#include <set>
//######################################################################