std.cfg: Add configuration for std::map::at() (#2256)

Reference: https://en.cppreference.com/w/cpp/container/map/at
This commit is contained in:
Sebastian 2019-10-10 13:13:29 +02:00 committed by GitHub
parent c2b514dc45
commit d6f879c2f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -7584,6 +7584,16 @@ initializer list (7) string& replace (const_iterator i1, const_iterator i2, init
</arg>
<arg nr="any"/>
</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">
<noreturn>false</noreturn>
<use-retval/>
<leak-ignore/>
<arg nr="1" direction="in">
<not-uninit/>
</arg>
</function>
<memory>
<alloc init="false" buffer-size="malloc">malloc</alloc>
<alloc init="true" buffer-size="calloc">calloc</alloc>