From: Francis Dupont Date: Tue, 10 Jul 2018 06:41:12 +0000 (+0200) Subject: [5685] Checkpoint: list -> vector X-Git-Tag: 66-authoritative-flag-in-kea_base~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ca5257cd4d309cdcbfa5a182794a35a1fb3fe9f;p=thirdparty%2Fkea.git [5685] Checkpoint: list -> vector --- diff --git a/src/lib/dhcpsrv/client_class_def.h b/src/lib/dhcpsrv/client_class_def.h index abeda2adfc..a20a36ee09 100644 --- a/src/lib/dhcpsrv/client_class_def.h +++ b/src/lib/dhcpsrv/client_class_def.h @@ -17,6 +17,7 @@ #include #include #include +#include /// @file client_class_def.h /// @@ -250,7 +251,7 @@ typedef std::unordered_map ClientClassDefMap; typedef boost::shared_ptr ClientClassDefMapPtr; /// @brief Defines a list of ClientClassDefPtr's, using insert order. -typedef std::list ClientClassDefList; +typedef std::vector ClientClassDefList; /// @brief Defines a pointer to a ClientClassDefList typedef boost::shared_ptr ClientClassDefListPtr;