diff --git a/include/util/static_assert.hpp b/include/util/static_assert.hpp index f1e24c881..234b26391 100644 --- a/include/util/static_assert.hpp +++ b/include/util/static_assert.hpp @@ -8,14 +8,14 @@ namespace osrm::util template inline void static_assert_iter_value() { - // using IterValueType = typename std::iterator_traits::value_type; - // static_assert(std::is_same::value, ""); + using IterValueType = typename std::iterator_traits::value_type; + static_assert(std::is_same::value, ""); } template inline void static_assert_iter_category() { - // using IterCategoryType = typename std::iterator_traits::iterator_category; - // static_assert(std::is_base_of::value, ""); + using IterCategoryType = typename std::iterator_traits::iterator_category; + static_assert(std::is_base_of::value, ""); } } // namespace osrm::util