Advertisement
PVS-StudioWarnings

PVS-Studio warning V665 for Source SDK

Nov 25th, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.54 KB | None | 0 0
  1. #pragma warning (disable : 4355 )
  2. ....
  3. #pragma warning ( default : 4355 )
  4.  
  5. This suspicious code was found in Source SDK project by PVS-Studio static code analyzer.
  6. Warning message is:
  7. 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: 577, 624. Captioncompiler convar.h 624
  8.  
  9. 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