2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-29 13:07:50 +00:00

include limits.h

Fixes build with gcc11
backend_selector.cc:61:35: error: 'numeric_limits' is not a member of 'std'

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj 2021-02-26 23:31:15 -08:00 committed by Tomek Mrugalski
parent d505f7a7d6
commit 38f6f6272f
2 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,7 @@
#include <database/backend_selector.h>
#include <exceptions/exceptions.h>
#include <climits>
#include <limits>
#include <sstream>
using namespace isc::data;

View File

@ -10,6 +10,7 @@
#include <exceptions/exceptions.h>
#include <stdint.h>
#include <typeinfo>
#include <limits>
namespace isc {
namespace dhcp {