std.cfg: Added support for std::string::append().

This commit is contained in:
orbitcowboy 2019-02-09 16:43:08 +01:00
parent 6a592d18ab
commit 2408096cc8
1 changed files with 21 additions and 0 deletions

View File

@ -6446,6 +6446,27 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
<not-uninit/> <not-uninit/>
</arg> </arg>
</function> </function>
<!-- std::string& std::string::append (const std::string& str); -->
<function name="std::string::append">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="std::string &amp;"/>
<arg nr="1"/>
</function>
<!-- std::wstring& std::wstring::append (const std::wstring& str); -->
<function name="std::wstring::append">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="std::wstring &amp;"/>
<arg nr="1"/>
</function>
<!-- std::basic_string& std::basic_string::append (const std::basic_string& str); -->
<function name="std::basic_string::append">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="std::basic_string &amp;"/>
<arg nr="1"/>
</function>
<!-- void reserve (size_t n = 0); --> <!-- void reserve (size_t n = 0); -->
<function name="std::string::reserve,std::wstring::reserve,std::basic_string::reserve"> <function name="std::string::reserve,std::wstring::reserve,std::basic_string::reserve">
<noreturn>false</noreturn> <noreturn>false</noreturn>