std.cfg: Added support for std::deque::at
This commit is contained in:
parent
c968aeaf73
commit
d36c4fc365
11
cfg/std.cfg
11
cfg/std.cfg
|
@ -7854,6 +7854,17 @@ initializer list (7) string& replace (const_iterator i1, const_iterator i2, init
|
||||||
<not-uninit/>
|
<not-uninit/>
|
||||||
</arg>
|
</arg>
|
||||||
</function>
|
</function>
|
||||||
|
<!-- T& std::deque::at( size_type pos ); -->
|
||||||
|
<!-- const T& std::deque::at( size_type pos ) const; -->
|
||||||
|
<function name="std::deque::at">
|
||||||
|
<noreturn>false</noreturn>
|
||||||
|
<use-retval/>
|
||||||
|
<leak-ignore/>
|
||||||
|
<arg nr="1" direction="in">
|
||||||
|
<not-uninit/>
|
||||||
|
<valid>0:</valid>
|
||||||
|
</arg>
|
||||||
|
</function>
|
||||||
<!-- C Threads https://en.cppreference.com/w/c/thread -->
|
<!-- C Threads https://en.cppreference.com/w/c/thread -->
|
||||||
<!-- int thrd_create( thrd_t *thr, thrd_start_t func, void *arg ); // since C11 -->
|
<!-- int thrd_create( thrd_t *thr, thrd_start_t func, void *arg ); // since C11 -->
|
||||||
<function name="thrd_create">
|
<function name="thrd_create">
|
||||||
|
|
Loading…
Reference in New Issue