Skip to content

Commit

Permalink
Missing aliases cause compilation fail
Browse files Browse the repository at this point in the history
  • Loading branch information
alxbilger authored and fredroy committed Nov 13, 2024
1 parent fa1c835 commit bd8e483
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ class IdentityMapping : public LinearMapping<TIn, TOut>
typedef typename In::Coord InCoord;
typedef typename In::Deriv InDeriv;
typedef typename In::MatrixDeriv InMatrixDeriv;
typedef Data<InVecCoord> InDataVecCoord;
typedef Data<InVecDeriv> InDataVecDeriv;

typedef typename Out::VecCoord VecCoord;
typedef typename Out::VecDeriv VecDeriv;
Expand All @@ -61,6 +63,8 @@ class IdentityMapping : public LinearMapping<TIn, TOut>
typedef typename OutDataTypes::Real OutReal;
typedef typename OutDataTypes::VecCoord OutVecCoord;
typedef typename OutDataTypes::VecDeriv OutVecDeriv;
typedef Data<OutVecCoord> OutDataVecCoord;
typedef Data<OutVecDeriv> OutDataVecDeriv;

enum
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,17 @@ class RigidMapping : public core::Mapping<TIn, TOut>, public NonLinearMappingDat
typedef typename Out::VecCoord OutVecCoord;
typedef typename Out::VecDeriv OutVecDeriv;
typedef typename Out::MatrixDeriv OutMatrixDeriv;
typedef Data<OutVecCoord> OutDataVecCoord;
typedef Data<OutVecDeriv> OutDataVecDeriv;

typedef typename In::Real InReal;
typedef typename In::Coord InCoord;
typedef typename In::Deriv InDeriv;
typedef typename In::VecCoord InVecCoord;
typedef typename In::VecDeriv InVecDeriv;
typedef typename In::MatrixDeriv InMatrixDeriv;
typedef Data<InVecCoord> InDataVecCoord;
typedef Data<InVecDeriv> InDataVecDeriv;

enum
{
Expand Down

0 comments on commit bd8e483

Please sign in to comment.