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

This commit is contained in:
orbitcowboy 2019-02-23 23:44:23 +01:00
parent bcd7830fcb
commit 568887eadf
1 changed files with 14 additions and 0 deletions

View File

@ -6778,6 +6778,20 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
<not-uninit/>
</arg>
</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_if(InputIterator first, InputIterator last, UnaryPredicate val) -->
<function name="std::count,std::count_if">