std.cfg: Added support for std::swap.

This commit is contained in:
orbitcowboy 2017-10-11 13:12:00 +02:00
parent e4cdb51f7f
commit 5bc61e35a0
3 changed files with 51 additions and 48 deletions

View File

@ -4,7 +4,6 @@
<noreturn>false</noreturn> <noreturn>false</noreturn>
<use-retval/> <use-retval/>
</function> </function>
<function name="Token::Match"> <function name="Token::Match">
<noreturn>false</noreturn> <noreturn>false</noreturn>
<use-retval/> <use-retval/>
@ -21,7 +20,6 @@
<not-bool/> <not-bool/>
</arg> </arg>
</function> </function>
<function name="Token::simpleMatch"> <function name="Token::simpleMatch">
<noreturn>false</noreturn> <noreturn>false</noreturn>
<use-retval/> <use-retval/>
@ -34,7 +32,6 @@
<strz/> <strz/>
</arg> </arg>
</function> </function>
<function name="Token::linkAt,Token::strAt,Token::tokAt"> <function name="Token::linkAt,Token::strAt,Token::tokAt">
<noreturn>false</noreturn> <noreturn>false</noreturn>
<use-retval/> <use-retval/>

View File

@ -5822,6 +5822,11 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
<not-uninit/> <not-uninit/>
</arg> </arg>
</function> </function>
<!-- template< class T > void swap( T& a, T& b );-->
<function name="std::swap">
<noreturn>false</noreturn>
<arg nr="2"/>
</function>
<!-- bool good() const; --> <!-- bool good() const; -->
<function name="std::ios::good,std::ios_base::good,std::ostream::good,std::ofstream::good"> <function name="std::ios::good,std::ios_base::good,std::ostream::good,std::ofstream::good">
<noreturn>false</noreturn> <noreturn>false</noreturn>

View File

@ -33,7 +33,8 @@
#include "cppcheck.h" #include "cppcheck.h"
#include "errorlogger.h" #include "errorlogger.h"
static QString clangTidyCmd() { static QString clangTidyCmd()
{
QString path = QSettings().value(SETTINGS_CLANG_PATH,QString()).toString(); QString path = QSettings().value(SETTINGS_CLANG_PATH,QString()).toString();
if (!path.isEmpty()) if (!path.isEmpty())
path += '/'; path += '/';