std.cfg: Added support for std::list::remove().
This commit is contained in:
parent
a5ac9fcac5
commit
aa4265978c
16
cfg/std.cfg
16
cfg/std.cfg
|
@ -6256,7 +6256,7 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
</function>
|
||||
<!-- void reserve(size_type new_capacity); -->
|
||||
<!-- void std::vector::reserve(size_type new_capacity); -->
|
||||
<function name="std::vector::reserve">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
|
@ -6266,9 +6266,17 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<valid>0:</valid>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- void resize(size_type count, T value = T()); // until C++11 -->
|
||||
<!-- void resize(size_type count); // since C++11 -->
|
||||
<!-- void resize(size_type count, const value_type& value); // since C++11 -->
|
||||
<!-- void std::list::remove (const value_type& val); -->
|
||||
<function name="std::list::remove">
|
||||
<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">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
|
|
Loading…
Reference in New Issue