std.cfg: Added support for std::reverse().
This commit is contained in:
parent
59d3ce2343
commit
c38cbd967b
13
cfg/std.cfg
13
cfg/std.cfg
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue