Closed pauleonix closed 6 months ago
Closes #330
It needs to be the same as AccessorPolicy::element_type.
AccessorPolicy::element_type
I used plain std::is_same<T, U>::value because std::is_same_v<T, U> is a C++17 feature and the code should be compatible with C++14.
std::is_same<T, U>::value
std::is_same_v<T, U>
@pauleonix Delightful! Thanks for the fix! and thanks @dalg24 for the review!
Closes #330
It needs to be the same as
AccessorPolicy::element_type
.I used plain
std::is_same<T, U>::value
becausestd::is_same_v<T, U>
is a C++17 feature and the code should be compatible with C++14.