Skip to content

Commit

Permalink
More NOSONAR suppressions in PyImath.
Browse files Browse the repository at this point in the history
Signed-off-by: Christina Tempelaar-Lietz <xlietz@gmail.com>
  • Loading branch information
xlietz committed Oct 8, 2019
1 parent 7ff7ee7 commit 6f6665e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions PyIlmBase/PyImath/PyImathVec3Impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -994,8 +994,8 @@ register_Vec3()
.def("__itruediv__", &Vec3_idivObj<T>,return_internal_reference<>())
.def("__xor__", &Vec3_dot<T>)
.def("__mod__", &Vec3_cross<T>)
.def(self == self)
.def(self != self)
.def(self == self) // NOSONAR - suppress SonarCloud bug report.
.def(self != self) // NOSONAR - suppress SonarCloud bug report.
.def("__add__", &Vec3_add<T>)
.def("__add__", &Vec3_addV<T, int>)
.def("__add__", &Vec3_addV<T, float>)
Expand Down
4 changes: 2 additions & 2 deletions PyIlmBase/PyImath/PyImathVec4Impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -973,8 +973,8 @@ register_Vec4()
.def("__idiv__", &Vec4_idivObj<T>,return_internal_reference<>())
.def("__itruediv__", &Vec4_idivObj<T>,return_internal_reference<>())
.def("__xor__", &Vec4_dot<T>)
.def(self == self)
.def(self != self)
.def(self == self) // NOSONAR - suppress SonarCloud bug report.
.def(self != self) // NOSONAR - suppress SonarCloud bug report.
.def("__add__", &Vec4_add<T>)
.def("__add__", &Vec4_addV<T, int>)
.def("__add__", &Vec4_addV<T, float>)
Expand Down

0 comments on commit 6f6665e

Please sign in to comment.