std.cfg: Add mem_fn() (#1976)

std.cfg: Add mem_fn()

Reference:
https://en.cppreference.com/w/cpp/utility/functional/mem_fn
This commit is contained in:
Sebastian 2019-07-11 08:26:24 +02:00 committed by GitHub
parent 9700490e51
commit e49b098a86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -7502,6 +7502,16 @@ initializer list (7) string& replace (const_iterator i1, const_iterator i2, init
<arg nr="1"/>
<arg nr="2"/>
</function>
<!-- template< class M, class T > /*unspecified*/ mem_fn(M T::* pm); // since C++11 until C++17 -->
<!-- template< class M, class T > /*unspecified*/ mem_fn(M T::* pm) noexcept; // since C++17 -->
<function name="std::mem_fn">
<noreturn>false</noreturn>
<use-retval/>
<arg nr="1" direction="in">
<not-null/>
<not-uninit/>
</arg>
</function>
<memory>
<alloc init="false" buffer-size="malloc">malloc</alloc>
<alloc init="true" buffer-size="calloc">calloc</alloc>