std.cfg: Added support for std::unique().
This commit is contained in:
parent
bcd7830fcb
commit
568887eadf
14
cfg/std.cfg
14
cfg/std.cfg
|
@ -6778,6 +6778,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 ForwardIt > ForwardIt std::unique( ForwardIt first, ForwardIt last ); -->
|
||||||
|
<function name="std::unique">
|
||||||
|
<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>
|
||||||
|
</function>
|
||||||
<!-- difference_type std::count(InputIterator first, InputIterator last, T val) -->
|
<!-- difference_type std::count(InputIterator first, InputIterator last, T val) -->
|
||||||
<!-- difference_type std::count_if(InputIterator first, InputIterator last, UnaryPredicate val) -->
|
<!-- difference_type std::count_if(InputIterator first, InputIterator last, UnaryPredicate val) -->
|
||||||
<function name="std::count,std::count_if">
|
<function name="std::count,std::count_if">
|
||||||
|
|
Loading…
Reference in New Issue