Fix clang-tidy modernize-type-traits warnings in headers

This commit is contained in:
Tim Wojtulewicz 2025-06-09 19:54:16 -07:00
parent 23184af21c
commit 157c488b9d

View file

@ -20,7 +20,7 @@ public:
using element_type = T; using element_type = T;
using value_type = typename std::remove_cv<T>::type; using value_type = std::remove_cv_t<T>;
using index_type = size_t; using index_type = size_t;