std.cfg: Added support for std::back_inserter().
This commit is contained in:
parent
c38cbd967b
commit
748fe7f25e
14
cfg/std.cfg
14
cfg/std.cfg
|
@ -6826,6 +6826,20 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
||||||
<not-uninit/>
|
<not-uninit/>
|
||||||
</arg>
|
</arg>
|
||||||
</function>
|
</function>
|
||||||
|
<!-- template< class Container > std::back_insert_iterator<Container> std::back_inserter( Container& c );-->
|
||||||
|
<function name="std::back_inserter">
|
||||||
|
<returnValue type="void"/>
|
||||||
|
<use-retval/>
|
||||||
|
<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>
|
||||||
<!-- template< class BidirIt > void std::reverse( BidirIt first, BidirIt last ); -->
|
<!-- template< class BidirIt > void std::reverse( BidirIt first, BidirIt last ); -->
|
||||||
<function name="std::reverse">
|
<function name="std::reverse">
|
||||||
<returnValue type="void"/>
|
<returnValue type="void"/>
|
||||||
|
|
Loading…
Reference in New Issue