std.cfg: Added support for std::multiset::insert().
This commit is contained in:
parent
3aa131470b
commit
5135cbeecd
|
@ -6129,11 +6129,12 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<!-- iterator std::list::insert( const_iterator pos, std::initializer_list<T> ilist ); since C++11 -->
|
||||
<!-- For std::multimap::insert see http://en.cppreference.com/w/cpp/container/multimap/insert -->
|
||||
<!-- For std::map::insert see http://en.cppreference.com/w/cpp/container/map/insert -->
|
||||
<!-- For std::multiset::insert see http://en.cppreference.com/w/cpp/container/multiset/insert -->
|
||||
<!-- For std::set::insert see http://en.cppreference.com/w/cpp/container/set/insert -->
|
||||
<!-- For std::string::insert see http://en.cppreference.com/w/cpp/string/basic_string/insert -->
|
||||
<!-- For std::vector::insert see http://en.cppreference.com/w/cpp/container/vector/insert -->
|
||||
<!-- Return value type is "iterator" or "void" depending on the overloaded function. -->
|
||||
<function name="std::list::insert,std::multimap::insert,std::map::insert,std::set::insert,std::string::insert,std::vector::insert">
|
||||
<function name="std::list::insert,std::multimap::insert,std::map::insert,std::set::insert,std::multiset::insert,std::string::insert,std::vector::insert">
|
||||
<noreturn>false</noreturn>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
|
|
Loading…
Reference in New Issue