Advertisement
PVS-StudioWarnings

PVS-Studio warning V519 for Clang

Nov 24th, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.56 KB | None | 0 0
  1. std::string ASTContext::getObjCEncodingForBlock(....) const {
  2.   ...
  3.   ParmOffset = PtrSize;
  4.   // Argument types.
  5.   ParmOffset = PtrSize;
  6.   ...
  7. }
  8.  
  9. This suspicious code was found in Clang project by PVS-Studio static code analyzer.
  10. Warning message is:
  11. V519 The 'ParmOffset' variable is assigned values twice successively. Perhaps this is a mistake. Check lines: 3953, 3956. clangAST astcontext.cpp 3956
  12.  
  13. 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