Advertisement
PVS-StudioWarnings

PVS-Studio warning V501 for Boost

Nov 24th, 2014
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.50 KB | None | 0 0
  1. point3D operator/(const point3D &p1, const point3D &p2)
  2. {
  3.   return point3D(p1.x/p2.x, p1.y/p2.y, p1.z/p1.z);
  4. }
  5.  
  6. This suspicious code was found in Boost project by PVS-Studio static code analyzer.
  7. Warning message is:
  8. V501 There are identical sub-expressions to the left and to the right of the '/' operator: p1.z / p1.z lorenz_point.cpp 61
  9.  
  10. PVS-Studio is a static analyzer for detecting bugs in the source code of applications written in C, C++, C++11, C++/CX. Site: http://www.viva64.com/en/pvs-studio/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement