std.cfg: Added support for std::reverse().

This commit is contained in:
orbitcowboy 2019-02-23 23:55:13 +01:00
parent 59d3ce2343
commit c38cbd967b
1 changed files with 13 additions and 0 deletions

View File

@ -6826,6 +6826,19 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
<not-uninit/>
</arg>
</function>
<!-- template< class BidirIt > void std::reverse( BidirIt first, BidirIt last ); -->
<function name="std::reverse">
<returnValue type="void"/>
<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>
</function>
<!-- Function std::for_each(InputIterator first, InputIterator last, Function func) -->
<function name="std::for_each">
<noreturn>false</noreturn>