Kaydet (Commit) 66fd9a61 authored tarafından Julien Nabet's avatar Julien Nabet

Fix "Same expression on both sides of '&&'" (reported by cppcheck)

üst a687d554
......@@ -282,7 +282,7 @@ namespace basegfx
bOnEdge = false;
}
}
while(bOnEdge && pPNa2 != &rPNa && pPNa2 != &rPNa);
while(bOnEdge && pPNa2 != &rPNa && pPNb2 != &rPNb);
if(bOnEdge)
{
......@@ -408,7 +408,7 @@ namespace basegfx
bOnEdge = false;
}
}
while(bOnEdge && pPNa2 != &rPNa && pPNa2 != &rPNa);
while(bOnEdge && pPNa2 != &rPNa && pPNb2 != &rPNb);
if(bOnEdge)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment