Advertisement
PVS-StudioWarnings

PVS-Studio warning V665 for Newton Game Dynamics

Nov 27th, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.70 KB | None | 0 0
  1. #if defined(_MSC_VER)
  2. /* Disable MSVC 'anachronism used' warning */
  3. #pragma warning( disable : 4229 )
  4. #endif
  5.  
  6. typedef void (* PTW32_CDECL ptw32_cleanup_callback_t)(void *);
  7.  
  8. #if defined(_MSC_VER)
  9. #pragma warning( default : 4229 )
  10. #endif
  11.  
  12. This suspicious code was found in Newton Game Dynamics project by PVS-Studio static code analyzer.
  13. Warning message is:
  14. V665 Possibly, the usage of '#pragma warning(default: X)' is incorrect in this context. The '#pragma warning(push/pop)' should be used instead. Check lines: 733, 739. pthread.h 739
  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