Skip to content

Commit

Permalink
Experimenting with msvc
Browse files Browse the repository at this point in the history
  • Loading branch information
pettni committed Dec 24, 2020
1 parent 2730a0c commit ac91687
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/manif/impl/bundle/BundleTangent.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ struct traits<BundleTangent<_Scalar, _T...>>
using LenAlg = intseq<_T<_Scalar>::Tangent::LieAlg::RowsAtCompileTime ...>;
using BegAlg = bundle::intseq_psum_t<LenAlg>;

using _tuple_t = std::tuple<typename _T<_Scalar>::Tangent ...>;
using _tuple_t = std::tuple<_T<_Scalar> ...>;

template<size_t _Idx>
using PartType = typename std::tuple_element<_Idx, _tuple_t>::type;
using PartType = typename std::tuple_element<_Idx, _tuple_t>::type::Tangent;

// Regular traits
using Scalar = _Scalar;
Expand Down

0 comments on commit ac91687

Please sign in to comment.