Skip to content

Commit

Permalink
Merge pull request #174 from justusc/master
Browse files Browse the repository at this point in the history
Fix default is_index
  • Loading branch information
evaleev authored Sep 22, 2024
2 parents 3364fc5 + 2e0f4e7 commit af41dd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion btas/index_traits.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class has_integral_value_type {
/// test _Index conforms the TWG.Index concept
/// check only value_type and operator[]
template<typename ...>
class is_index;
class is_index : public std::false_type {};

template<typename _Index>
class is_index<_Index> {
Expand Down

0 comments on commit af41dd9

Please sign in to comment.