std.cfg: update configuration for STL containers
This commit is contained in:
parent
e560ad1616
commit
ddc73008a6
14
cfg/std.cfg
14
cfg/std.cfg
|
@ -4037,14 +4037,19 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
||||||
<returnValue type="const char *"/>
|
<returnValue type="const char *"/>
|
||||||
<use-retval/>
|
<use-retval/>
|
||||||
</function>
|
</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>
|
<noreturn>false</noreturn>
|
||||||
</function>
|
</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>
|
<noreturn>false</noreturn>
|
||||||
<returnValue type="bool"/>
|
<returnValue type="bool"/>
|
||||||
<use-retval/>
|
<use-retval/>
|
||||||
</function>
|
</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 string& str, size_t pos = 0) const; -->
|
||||||
<!-- size_t find (const char* s, size_t pos, size_t n) const; -->
|
<!-- size_t find (const char* s, size_t pos, size_t n) const; -->
|
||||||
<!-- size_t find (char c, size_t pos = 0) 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"/>
|
<returnValue type="std::size_t"/>
|
||||||
<use-retval/>
|
<use-retval/>
|
||||||
</function>
|
</function>
|
||||||
<function name="std::string::size">
|
|
||||||
<noreturn>false</noreturn>
|
|
||||||
<returnValue type="std::size_t"/>
|
|
||||||
<use-retval/>
|
|
||||||
</function>
|
|
||||||
<!-- istream& read (char* s, streamsize n);
|
<!-- istream& read (char* s, streamsize n);
|
||||||
ifstream& read (char* s, streamsize n); -->
|
ifstream& read (char* s, streamsize n); -->
|
||||||
<function name="std::istream::read,std::ifstream::read">
|
<function name="std::istream::read,std::ifstream::read">
|
||||||
|
|
Loading…
Reference in New Issue