Skip to content

Commit

Permalink
Fix warning C4819
Browse files Browse the repository at this point in the history
Remove non-unicode characters
  • Loading branch information
gergondet committed Sep 25, 2020
1 parent 18db241 commit 9d4ac19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/RBDyn/RBDyn/MultiBody.h
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ class RBDYN_DLLAPI MultiBody
return jointPosInParam_[static_cast<std::size_t>(i)];
}

/// @return the joint i position in dof vector (alpha, alphaD).
/// @return the joint i position in dof vector (alpha, alphaD...).
int jointPosInDof(int i) const
{
return jointPosInDof_[static_cast<std::size_t>(i)];
Expand All @@ -196,7 +196,7 @@ class RBDYN_DLLAPI MultiBody
return jointPosInParam_;
}

/// @return the joint position in dof vector (alpha, alphaD).
/// @return the joint position in dof vector (alpha, alphaD...).
const std::vector<int> & jointsPosInDof() const
{
return jointPosInDof_;
Expand Down Expand Up @@ -357,7 +357,7 @@ class RBDYN_DLLAPI MultiBody

/// Position of joint i in parameter vector.
std::vector<int> jointPosInParam_;
/// Position of joint i in dof vector (velocity, acceleration).
/// Position of joint i in dof vector (velocity, acceleration...).
std::vector<int> jointPosInDof_;

int nrParams_;
Expand Down

0 comments on commit 9d4ac19

Please sign in to comment.