std.cfg: update configuration for STL containers

This commit is contained in:
Daniel Marjamäki 2017-03-05 18:31:03 +01:00
parent e560ad1616
commit ddc73008a6
1 changed files with 7 additions and 7 deletions

View File

@ -4037,14 +4037,19 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
<returnValue type="const char *"/>
<use-retval/>
</function>
<function name="std::string::clear">
<function name="std::list::clear,std::map::clear,std::set::clear,std::string::clear,std::vector::clear">
<noreturn>false</noreturn>
</function>
<function name="std::string::empty">
<function name="std::list::empty,std::map::empty,std::set::empty,std::string::empty,std::vector::empty">
<noreturn>false</noreturn>
<returnValue type="bool"/>
<use-retval/>
</function>
<function name="std::list::size,std::map::size,std::set::size,std::string::size,std::vector::size">
<noreturn>false</noreturn>
<returnValue type="std::size_t"/>
<use-retval/>
</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;-->
@ -4070,11 +4075,6 @@ 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::string::size">
<noreturn>false</noreturn>
<returnValue type="std::size_t"/>
<use-retval/>
</function>
<!-- istream& read (char* s, streamsize n);
ifstream& read (char* s, streamsize n); -->
<function name="std::istream::read,std::ifstream::read">