Advertisement
PVS-StudioWarnings

PVS-Studio warning V564 for OpenMW

Nov 26th, 2014
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.63 KB | None | 0 0
  1. enum Flags
  2. {
  3.   ....
  4.   NoDuration = 0x4,
  5.   ....
  6. }
  7.  
  8. bool CastSpell::cast (const ESM::Ingredient* ingredient)
  9. {
  10.   ....
  11.   if (!magicEffect->mData.mFlags & ESM::MagicEffect::NoDuration)
  12.   ....
  13. }
  14.  
  15. This suspicious code was found in OpenMW project by PVS-Studio static code analyzer.
  16. Warning message is:
  17. V564 The '&' operator is applied to bool type value. You've probably forgotten to include parentheses or intended to use the '&&' operator. openmw spellcasting.cpp 717
  18.  
  19. 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