Advertisement
PVS-StudioWarnings

PVS-Studio warning V501 for OGRE

Nov 10th, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.71 KB | None | 0 0
  1. void ParticleSystem::increaseEmittedEmitterPool(size_t size)
  2. {
  3.   ...
  4.   if (clonedEmitter->getDuration() > 0.0f &&
  5.       (clonedEmitter->getRepeatDelay() > 0.0f ||
  6.        clonedEmitter->getMinRepeatDelay() > 0.0f ||
  7.        clonedEmitter->getMinRepeatDelay() > 0.0f))
  8.    clonedEmitter->setEnabled(false);
  9.   ...
  10. }
  11.  
  12. This suspicious code was found in OGRE project by PVS-Studio static code analyzer.
  13. Warning message is:
  14. V501 There are identical sub-expressions to the left and to the right of the '||' operator. OgreMain ogreparticlesystem.cpp 1358
  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