Without this include, make produces the following error:
rdfind.cc: In function ‘Options parseOptions(Parser&)’:
rdfind.cc:225:30: error: ‘numeric_limits’ is not a member of ‘std’
225 | o.maximumfilesize = std::numeric_limits<decltype(o.maximumfilesize)>::max();
I'm running Ubuntu 21.10, with C++ headers being provided by libstdc++-11-dev installed. Compiler is g++ 11.2.0.
Without this include,
make
produces the following error:I'm running Ubuntu 21.10, with C++ headers being provided by
libstdc++-11-dev
installed. Compiler isg++ 11.2.0
.