std.cfg: Added support for std::string::append().
This commit is contained in:
parent
6a592d18ab
commit
2408096cc8
21
cfg/std.cfg
21
cfg/std.cfg
|
@ -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 &"/>
|
||||||
|
<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 &"/>
|
||||||
|
<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 &"/>
|
||||||
|
<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>
|
||||||
|
|
Loading…
Reference in New Issue