std.cfg: Added support for std::remove_if().
This commit is contained in:
parent
568887eadf
commit
59d3ce2343
17
cfg/std.cfg
17
cfg/std.cfg
|
@ -6809,6 +6809,23 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
||||||
<not-uninit/>
|
<not-uninit/>
|
||||||
</arg>
|
</arg>
|
||||||
</function>
|
</function>
|
||||||
|
<!-- template< class ForwardIt, class UnaryPredicate > ForwardIt std::remove_if( ForwardIt first, ForwardIt last, UnaryPredicate p ); -->
|
||||||
|
<function name="std::remove_if">
|
||||||
|
<use-retval/>
|
||||||
|
<returnValue type="iterator" container="1"/>
|
||||||
|
<noreturn>false</noreturn>
|
||||||
|
<arg nr="1">
|
||||||
|
<not-uninit/>
|
||||||
|
<iterator container="1" type="first"/>
|
||||||
|
</arg>
|
||||||
|
<arg nr="2">
|
||||||
|
<not-uninit/>
|
||||||
|
<iterator container="1" type="last"/>
|
||||||
|
</arg>
|
||||||
|
<arg nr="3">
|
||||||
|
<not-uninit/>
|
||||||
|
</arg>
|
||||||
|
</function>
|
||||||
<!-- Function std::for_each(InputIterator first, InputIterator last, Function func) -->
|
<!-- Function std::for_each(InputIterator first, InputIterator last, Function func) -->
|
||||||
<function name="std::for_each">
|
<function name="std::for_each">
|
||||||
<noreturn>false</noreturn>
|
<noreturn>false</noreturn>
|
||||||
|
|
Loading…
Reference in New Issue