Skip to content

Commit

Permalink
Remove useless parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
dsieger committed Jul 27, 2022
1 parent e6107f4 commit ecd9a67
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/pmp/SurfaceMesh.h
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ class SurfaceMesh
//! post-increment (rotate counter-clockwise)
VertexAroundVertexCirculator operator++(int)
{
auto tmp = (*this);
auto tmp = *this;
++(*this);
return tmp;
}
Expand All @@ -669,7 +669,7 @@ class SurfaceMesh
//! post-decrement (rotate clockwise)
VertexAroundVertexCirculator operator--(int)
{
auto tmp = (*this);
auto tmp = *this;
--(*this);
return tmp;
}
Expand Down Expand Up @@ -753,7 +753,7 @@ class SurfaceMesh
//! post-increment (rotate counter-clockwise)
HalfedgeAroundVertexCirculator operator++(int)
{
auto tmp = (*this);
auto tmp = *this;
++(*this);
return tmp;
}
Expand All @@ -769,7 +769,7 @@ class SurfaceMesh
//! post-decrement (rotate clockwise)
HalfedgeAroundVertexCirculator operator--(int)
{
auto tmp = (*this);
auto tmp = *this;
--(*this);
return tmp;
}
Expand Down Expand Up @@ -853,7 +853,7 @@ class SurfaceMesh
//! post-increment (rotate counter-clockwise)
FaceAroundVertexCirculator operator++(int)
{
auto tmp = (*this);
auto tmp = *this;
++(*this);
return tmp;
}
Expand All @@ -871,7 +871,7 @@ class SurfaceMesh
//! post-decrement (rotate clockwise)
FaceAroundVertexCirculator operator--(int)
{
auto tmp = (*this);
auto tmp = *this;
--(*this);
return tmp;
}
Expand Down Expand Up @@ -952,7 +952,7 @@ class SurfaceMesh
//! post-increment (rotate counter-clockwise)
VertexAroundFaceCirculator operator++(int)
{
auto tmp = (*this);
auto tmp = *this;
++(*this);
return tmp;
}
Expand All @@ -968,7 +968,7 @@ class SurfaceMesh
//! post-decrement (rotate clockwise)
VertexAroundFaceCirculator operator--(int)
{
auto tmp = (*this);
auto tmp = *this;
--(*this);
return tmp;
}
Expand Down Expand Up @@ -1046,7 +1046,7 @@ class SurfaceMesh
//! post-increment (rotate counter-clockwise)
HalfedgeAroundFaceCirculator operator++(int)
{
auto tmp = (*this);
auto tmp = *this;
++(*this);
return tmp;
}
Expand All @@ -1062,7 +1062,7 @@ class SurfaceMesh
//! post-decrement (rotate clockwise)
HalfedgeAroundFaceCirculator operator--(int)
{
auto tmp = (*this);
auto tmp = *this;
--(*this);
return tmp;
}
Expand Down

0 comments on commit ecd9a67

Please sign in to comment.