std.cfg: Added support for std::list::remove().

This commit is contained in:
orbitcowboy 2019-03-01 15:10:36 +01:00
parent a5ac9fcac5
commit aa4265978c
1 changed files with 12 additions and 4 deletions

View File

@ -6256,7 +6256,7 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
<noreturn>false</noreturn> <noreturn>false</noreturn>
<returnValue type="void"/> <returnValue type="void"/>
</function> </function>
<!-- void reserve(size_type new_capacity); --> <!-- void std::vector::reserve(size_type new_capacity); -->
<function name="std::vector::reserve"> <function name="std::vector::reserve">
<noreturn>false</noreturn> <noreturn>false</noreturn>
<returnValue type="void"/> <returnValue type="void"/>
@ -6266,9 +6266,17 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
<valid>0:</valid> <valid>0:</valid>
</arg> </arg>
</function> </function>
<!-- void resize(size_type count, T value = T()); // until C++11 --> <!-- void std::list::remove (const value_type& val); -->
<!-- void resize(size_type count); // since C++11 --> <function name="std::list::remove">
<!-- void resize(size_type count, const value_type& value); // since C++11 --> <noreturn>false</noreturn>
<returnValue type="void"/>
<arg nr="1">
<not-uninit/>
</arg>
</function>
<!-- void std::vector::resize(size_type count, T value = T()); // until C++11 -->
<!-- void std::vector::resize(size_type count); // since C++11 -->
<!-- void std::vector::resize(size_type count, const value_type& value); // since C++11 -->
<function name="std::vector::resize"> <function name="std::vector::resize">
<noreturn>false</noreturn> <noreturn>false</noreturn>
<returnValue type="void"/> <returnValue type="void"/>