Advertisement
PVS-StudioWarnings

PVS-Studio warning V560 for Lugaru

Nov 24th, 2014
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.59 KB | None | 0 0
  1. void Person::DoAnimations(){
  2.   ...
  3.   if(findDistancefast(
  4.     &coords,&victim->coords)<(scale*5)*(scale*5)*3&&3&&
  5.     animation[victim->targetanimation].height!=lowheight){
  6.   ...
  7. }
  8.  
  9. This is not an error, but 3 is obviously unnecessary.
  10.  
  11. This suspicious code was found in Lugaru project by PVS-Studio static code analyzer.
  12. Warning message is:
  13. V560 A part of conditional expression is always true: 3. Lugaru person.cpp 2472
  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