std.cfg: Added support for std::vector::pop_back() and std::vector::push_back ().

This commit is contained in:
orbitcowboy 2019-02-12 18:52:18 +01:00
parent f5edc221f8
commit 40398c6c90
1 changed files with 9 additions and 0 deletions

View File

@ -6176,6 +6176,15 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
<not-uninit/>
</arg>
</function>
<!-- void std::vector::push_back (const value_type& val); -->
<!-- void std::vector::push_back (value_type&& val); // since C++11-->
<!-- void std::vector::pop_back (const value_type& val); -->
<!-- void std::vector::pop_back (value_type&& val); // since C++11-->
<function name="std::vector::push_back,std::vector::pop_back">
<noreturn>false</noreturn>
<returnValue type="void"/>
<arg nr="1"/>
</function>
<function name="std::list::back,std::list::front,std::forward_list::front,std::queue::back,std::queue::front,std::vector::back,std::vector::front,std::array::front,std::array::back">
<use-retval/>
<noreturn>false</noreturn>