1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

0026650: Coding rules - fix misprint in NCollection_Vec3::operator/()

This commit is contained in:
kgv
2015-09-07 09:31:35 +03:00
committed by bugmaster
parent cef6867ce9
commit cc5f85f8c9
2 changed files with 5 additions and 1 deletions

View File

@@ -284,7 +284,7 @@ public:
//! Compute per-component division by scale factor.
NCollection_Vec3 operator/ (const Element_t theInvFactor)
{
NCollection_Vec3 aResult (this);
NCollection_Vec3 aResult (*this);
return aResult /= theInvFactor;
}