Advertisement
PVS-StudioWarnings

PVS-Studio warning V502 for TinyCAD

Nov 27th, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.61 KB | None | 0 0
  1. BOOL hasOrigin;
  2.  
  3. void Ruler::OnNewSize(CRect nSize)
  4. {
  5.   ....
  6.   Size = CRect(Size.left + hasOrigin ? RULER_WIDTH : 0,
  7.                Size.top, Size.right, Size.top + RULER_WIDTH);
  8.   ....
  9. }
  10.  
  11. This suspicious code was found in TinyCAD project by PVS-Studio static code analyzer.
  12. Warning message is:
  13. V502 Perhaps the '?:' operator works in a different way than it was expected. The '?:' operator has a lower priority than the '+' operator. ruler.cpp 66
  14.  
  15. 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