std.cfg: Added support for more interfaces

This commit is contained in:
orbitcowboy 2021-06-03 08:21:16 +02:00
parent f626035963
commit 025a04c3e0
1 changed files with 28 additions and 0 deletions

View File

@ -7948,6 +7948,34 @@ initializer list (7) string& replace (const_iterator i1, const_iterator i2, init
<not-uninit/>
</arg>
</function>
<!-- std::bitset& std::bitset< N >::set( ) (until C++11) -->
<!-- std::bitset& std::bitset< N >::set( ) noexcept (since C++11) -->
<!-- std::bitset& std::bitset< N >::set( std::size_t pos, bool value = true ) noexcept (since C++11) -->
<function name="std::bitset::set">
<noreturn>false</noreturn>
<returnValue type="std::bitset &amp;"/>
<leak-ignore/>
<arg nr="1" default="0" direction="in">
<not-uninit/>
</arg>
<arg nr="2" default="true" direction="in">
<not-uninit/>
</arg>
</function>
<!-- std::bitset& std::bitset< N >::reset( ) (until C++11) -->
<!-- std::bitset& std::bitset< N >::reset( ) noexcept (since C++11) -->
<!-- std::bitset& std::bitset< N >::reset( std::size_t pos ) noexcept (since C++11) -->
<!-- std::bitset& std::bitset< N >::flip( ) (until C++11) -->
<!-- std::bitset& std::bitset< N >::flip( ) noexcept (since C++11) -->
<!-- std::bitset& std::bitset< N >::flip( std::size_t pos ) noexcept (since C++11) -->
<function name="std::bitset::reset,std::bitset::flip">
<noreturn>false</noreturn>
<returnValue type="std::bitset &amp;"/>
<leak-ignore/>
<arg nr="1" default="0" direction="in">
<not-uninit/>
</arg>
</function>
<!-- std::pair<iterator,iterator> std::map::equal_range( const Key& key ); -->
<!-- std::pair<const_iterator,const_iterator> std::map::equal_range( const Key& key ) const; -->
<!-- template< class K > std::pair<iterator,iterator> std::map::equal_range( const K& x ); // since C++14 -->