Skip to content

Commit

Permalink
Add missing brace
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilyBourne committed Feb 10, 2025
1 parent d9786fe commit 9e3bd05
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/data_types/vector_index_tools.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
template <class... Dims>
using VectorIndexSet = ddc::detail::TypeSeq<Dims...>;

namespace tensor_tools {

/**
* @brief A class to get a VectorIndexSet containing only contravariant dimensions.
* @tparam AnyVectorIndexSet The original VectorIndexSet.
Expand Down Expand Up @@ -47,11 +49,6 @@ struct GetCovariantDims<VectorIndexSet<Dims...>>
= VectorIndexSet<std::conditional_t<Dims::IS_COVARIANT, Dims, typename Dims::Dual>...>;
};

} // namespace tensor_tools


namespace tensor_tools {

/**
* @brief A helper structure to recognise a VectorIndexSet type.
*/
Expand Down

0 comments on commit 9e3bd05

Please sign in to comment.