add missing type

This commit is contained in:
Sébastien Loriot 2023-02-23 09:46:46 +01:00
parent 851485d645
commit bdf6714b4c
1 changed files with 2 additions and 2 deletions

View File

@ -129,7 +129,7 @@ namespace internal {
RegionType& region_type,
ItemMap item_map = ItemMap()
#ifndef DOXYGEN_RUNNING
, std::enable_if<!std::is_same<ItemMap, RegionMap>::value>* = 0
, std::enable_if_t<!std::is_same<ItemMap, RegionMap>::value>* = 0
#endif
) :
m_neighbor_query(neighbor_query),
@ -193,7 +193,7 @@ namespace internal {
RegionType& region_type,
ItemMap item_map = ItemMap()
#ifndef DOXYGEN_RUNNING
, std::enable_if<!std::is_same<ItemMap, RegionMap>::value>* = 0
, std::enable_if_t<!std::is_same<ItemMap, RegionMap>::value>* = 0
#endif
) :
m_neighbor_query(neighbor_query),