Advertisement
PVS-StudioWarnings

PVS-Studio warning V517 for Geant4

Nov 21st, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.68 KB | None | 0 0
  1. G4VSolid* G4tgbVolume::FindOrConstructG4Solid(
  2.   const G4tgrSolid* sol )
  3. {
  4.   ....
  5.   if( solParam[jj+11] == 0 )
  6.   {
  7.     vertexType = ABSOLUTE;
  8.   }
  9.   else if( solParam[jj+11] == 0 )
  10.   {
  11.     vertexType = RELATIVE;
  12.   }
  13.   else
  14.   ....
  15. }
  16.  
  17. This suspicious code was found in Geant4 project by PVS-Studio static code analyzer.
  18. Warning message is:
  19. V517 The use of 'if (A) {...} else if (A) {...}' pattern was detected. There is a probability of logical error presence. Check lines: 680, 684. G4geomtext g4tgbvolume.cc 680
  20.  
  21. 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