std.cfg: Added support for std::minmax_element().
This commit is contained in:
parent
22a4fdb6c4
commit
f0b4c09804
13
cfg/std.cfg
13
cfg/std.cfg
|
@ -7315,6 +7315,19 @@ initializer list (7) string& replace (const_iterator i1, const_iterator i2, init
|
|||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- template< class ForwardIt > std::pair<ForwardIt,ForwardIt> std::minmax_element( ForwardIt first, ForwardIt last ) -->
|
||||
<function name="std::minmax_element">
|
||||
<use-retval/>
|
||||
<noreturn>false</noreturn>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
<iterator container="1" type="first"/>
|
||||
</arg>
|
||||
<arg nr="2" direction="in">
|
||||
<not-uninit/>
|
||||
<iterator container="1" type="last"/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- template<class InputIterator> typename iterator_traits<InputIterator>::difference_type std::distance (InputIterator first, InputIterator last); -->
|
||||
<function name="std::distance">
|
||||
<use-retval/>
|
||||
|
|
Loading…
Reference in New Issue