std.cfg: Add some more std::<container>::swap() functions (#2018)
This commit is contained in:
parent
453de18101
commit
f50cd2330c
10
cfg/std.cfg
10
cfg/std.cfg
|
@ -6448,9 +6448,17 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
||||||
<not-uninit/>
|
<not-uninit/>
|
||||||
</arg>
|
</arg>
|
||||||
</function>
|
</function>
|
||||||
|
<!-- https://en.cppreference.com/w/cpp/container/deque/swap -->
|
||||||
|
<!-- void std::deque::swap( deque& other ); -->
|
||||||
|
<!-- https://en.cppreference.com/w/cpp/container/list/swap -->
|
||||||
|
<!-- void std::list::swap( list& other ); -->
|
||||||
|
<!-- https://en.cppreference.com/w/cpp/container/map/swap -->
|
||||||
|
<!-- void std::map::swap( map& other ); -->
|
||||||
|
<!-- https://en.cppreference.com/w/cpp/container/set/swap -->
|
||||||
|
<!-- void std::set::swap( set& other ); -->
|
||||||
<!-- https://en.cppreference.com/w/cpp/container/vector/swap -->
|
<!-- https://en.cppreference.com/w/cpp/container/vector/swap -->
|
||||||
<!-- void std::vector::swap( vector& other ); -->
|
<!-- void std::vector::swap( vector& other ); -->
|
||||||
<function name="std::vector::swap">
|
<function name="std::deque::swap,std::list::swap,std::map::swap,std::set::swap,std::vector::swap">
|
||||||
<noreturn>false</noreturn>
|
<noreturn>false</noreturn>
|
||||||
<returnValue type="void"/>
|
<returnValue type="void"/>
|
||||||
<arg nr="1">
|
<arg nr="1">
|
||||||
|
|
Loading…
Reference in New Issue