Advertisement
PVS-StudioWarnings

PVS-Studio warning V523 for Clang

Nov 21st, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.68 KB | None | 0 0
  1. std::string RewriteObjC::SynthesizeBlockFunc(....)
  2. {
  3.   ...
  4.   if (convertBlockPointerToFunctionPointer(QT))
  5.     QT.getAsStringInternal(ParamStr,
  6.                            Context->getPrintingPolicy());
  7.   else
  8.     QT.getAsStringInternal(ParamStr,
  9.                            Context->getPrintingPolicy());
  10.   ...
  11. }
  12.  
  13. This suspicious code was found in Clang project by PVS-Studio static code analyzer.
  14. Warning message is:
  15. V523 The 'then' statement is equivalent to the 'else' statement. clangRewrite rewriteobjc.cpp 3361
  16.  
  17. 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