Kaydet (Commit) 87848afb authored tarafından Jan-Marek Glogowski's avatar Jan-Marek Glogowski

loplugin:unnecessaryparen

Change-Id: I4f8b76a9f924a476d04aa745837e732b10348ffa
üst 11403bc1
......@@ -81,7 +81,7 @@ namespace basegfx
if(!fTools::equal(rVecA.getX() * rVecB.getZ(), rVecA.getZ() * rVecB.getX()))
return false;
return (fTools::equal(rVecA.getY() * rVecB.getZ(), rVecA.getZ() * rVecB.getY()));
return fTools::equal(rVecA.getY() * rVecB.getZ(), rVecA.getZ() * rVecB.getY());
}
} // end of namespace basegfx
......
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