std.cfg: Improved support for std::string::resize().

This commit is contained in:
orbitcowboy 2017-10-13 10:22:59 +02:00
parent 43de937a4e
commit 3c96924c56
1 changed files with 5 additions and 3 deletions

View File

@ -5382,18 +5382,20 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
<not-uninit/>
</arg>
</function>
<!-- void std::resize (size_t n, char c);-->
<!-- void std::resize (size_t n, char c);-->
<!-- void std::wstring::resize (size_t n);-->
<!-- void std::string::resize (size_t n);-->
<!-- void std::string::resize (size_t n, char c);-->
<!-- void std::wstring::resize (size_t n);-->
<!-- void std::wstring::resize (size_t n, wchar_t c);-->
<function name="std::string::resize,std::wstring::resize">
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
<valid>0:</valid>
</arg>
<arg nr="2" default=" ">
<not-uninit/>
<valid>0:255</valid>
</arg>
</function>
<!-- wstring to_wstring (int val); -->