std.cfg: Added support for std::move().
This commit is contained in:
parent
8820580cf6
commit
1df9c80e81
10
cfg/std.cfg
10
cfg/std.cfg
|
@ -6879,6 +6879,16 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<arg nr="1"/>
|
||||
<arg nr="2"/>
|
||||
</function>
|
||||
<!-- template< class T > typename std::remove_reference<T>::type&& move( T&& t ) noexcept; // (since C++11) -->
|
||||
<!-- template< class T > constexpr typename std::remove_reference<T>::type&& move( T&& t ) noexcept; // (until C++14) -->
|
||||
<function name="std::move">
|
||||
<noreturn>false</noreturn>
|
||||
<use-retval/>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
<iterator container="1" type="first"/>
|
||||
</arg>
|
||||
</function>
|
||||
<!--#define offsetof(type, member) /*implementation-defined*/-->
|
||||
<function name="offsetof">
|
||||
<noreturn>false</noreturn>
|
||||
|
|
Loading…
Reference in New Issue