Advertisement
PVS-StudioWarnings

PVS-Studio warning V555 for TPP

Nov 10th, 2014
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.56 KB | None | 0 0
  1. size_type size() const;
  2.  
  3. void computeDegenWts()
  4. {
  5.   ....
  6.   int have_cluster = 0;
  7.   ....
  8.   if ( have_cluster > 0 && ppw_ref.size() - have_cluster > 0 )
  9.   ....
  10. }
  11.  
  12. This suspicious code was found in TPP project by PVS-Studio static code analyzer.
  13. Warning message is:
  14. V555 The expression 'ppw_ref.size() - have_cluster > 0' will work as 'ppw_ref.size() != have_cluster'. proteinprophet.cpp 6767
  15.  
  16. 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