std.cfg: Added support for std::unordered_map::at()
This commit is contained in:
parent
f53793c413
commit
48f2524774
|
@ -7848,7 +7848,9 @@ initializer list (7) string& replace (const_iterator i1, const_iterator i2, init
|
|||
</function>
|
||||
<!-- T& std::map::at( const Key& key ); // since C++11 -->
|
||||
<!-- const T& std::map::at( const Key& key ) const; // since C++11 -->
|
||||
<function name="std::map::at">
|
||||
<!-- T& std::unordered_map::at( const Key& key ); // since C++11 -->
|
||||
<!-- const T& std::unordered_map::at( const Key& key ) const; // since C++11 -->
|
||||
<function name="std::map::at,std::unordered_map::at">
|
||||
<noreturn>false</noreturn>
|
||||
<use-retval/>
|
||||
<leak-ignore/>
|
||||
|
@ -7858,6 +7860,8 @@ initializer list (7) string& replace (const_iterator i1, const_iterator i2, init
|
|||
</function>
|
||||
<!-- T& std::deque::at( size_type pos ); -->
|
||||
<!-- const T& std::deque::at( size_type pos ) const; -->
|
||||
<!-- T& std::array::at( size_type pos ); -->
|
||||
<!-- const T& std::array::at( size_type pos ) const; -->
|
||||
<function name="std::deque::at,std::array::at">
|
||||
<noreturn>false</noreturn>
|
||||
<use-retval/>
|
||||
|
|
Loading…
Reference in New Issue