Skip to content

Commit

Permalink
remove superfluous typenames
Browse files Browse the repository at this point in the history
  • Loading branch information
fredroy committed Dec 5, 2023
1 parent 3da305f commit a639cba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Sofa/framework/Type/src/sofa/type/Vec.h
Original file line number Diff line number Diff line change
Expand Up @@ -608,20 +608,20 @@ class Vec
return elems.data();
}

constexpr typename ArrayType::iterator begin() noexcept
constexpr iterator begin() noexcept
{
return elems.begin();
}
constexpr typename ArrayType::const_iterator begin() const noexcept
constexpr const_iterator begin() const noexcept
{
return elems.begin();
}

constexpr typename ArrayType::iterator end() noexcept
constexpr iterator end() noexcept
{
return elems.end();
}
constexpr typename ArrayType::const_iterator end() const noexcept
constexpr const_iterator end() const noexcept
{
return elems.end();
}
Expand Down

0 comments on commit a639cba

Please sign in to comment.