std.cfg: Add some more std::<container>::swap() functions (#2018)

This commit is contained in:
Sebastian 2019-07-19 10:00:14 +02:00 committed by GitHub
parent 453de18101
commit f50cd2330c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -6448,9 +6448,17 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
<not-uninit/>
</arg>
</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 -->
<!-- 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>
<returnValue type="void"/>
<arg nr="1">