Advertisement
PVS-StudioWarnings

PVS-Studio warning V639 for CryEngineSDK

Nov 21st, 2014
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.66 KB | None | 0 0
  1. bool ShouldRecordEvent(
  2.   size_t eventID, IActor* pActor=NULL) const;
  3.  
  4. void CActorTelemetry::SubscribeToWeapon(EntityId weaponId)
  5. {
  6.   ....
  7.   else if(pMgr->ShouldRecordEvent(eSE_Weapon), pOwnerRaw)
  8.   ....
  9. }
  10.  
  11. This suspicious code was found in CryEngineSDK project by PVS-Studio static code analyzer.
  12. Warning message is:
  13. V639 Consider inspecting the expression for 'ShouldRecordEvent' function call. It is possible that one of the closing ')' brackets was positioned incorrectly. actortelemetry.cpp 288
  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