added some more configuration for standard containers
This commit is contained in:
parent
2daf7f5430
commit
603171201a
21
cfg/std.cfg
21
cfg/std.cfg
|
@ -4042,6 +4042,20 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<returnValue type="std::size_t"/>
|
||||
<use-retval/>
|
||||
</function>
|
||||
<function name="std::list::back,std::list::front">
|
||||
<noreturn>false</noreturn>
|
||||
<use-retval/>
|
||||
</function>
|
||||
<function name="std::list::pop_back,std::list::pop_front">
|
||||
<noreturn>false</noreturn>
|
||||
</function>
|
||||
<function name="std::stack::pop">
|
||||
<noreturn>false</noreturn>
|
||||
</function>
|
||||
<function name="std::stack::top">
|
||||
<noreturn>false</noreturn>
|
||||
<use-retval/>
|
||||
</function>
|
||||
<function name="std::string::at">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="char"/>
|
||||
|
@ -4066,6 +4080,13 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<returnValue type="char"/>
|
||||
<use-retval/>
|
||||
</function>
|
||||
<function name="std::vector::back,std::vector::front">
|
||||
<noreturn>false</noreturn>
|
||||
<use-retval/>
|
||||
</function>
|
||||
<function name="std::vector::pop_back">
|
||||
<noreturn>false</noreturn>
|
||||
</function>
|
||||
<!-- size_t find (const string& str, size_t pos = 0) const; -->
|
||||
<!-- size_t find (const char* s, size_t pos, size_t n) const; -->
|
||||
<!-- size_t find (char c, size_t pos = 0) const;-->
|
||||
|
|
Loading…
Reference in New Issue