std.cfg: Added support for std::ostream::put() and std::stringstream::put().

This commit is contained in:
orbitcowboy 2019-06-06 14:45:51 +02:00
parent 080ba9004c
commit 9a163e59bf
1 changed files with 22 additions and 0 deletions

View File

@ -4241,6 +4241,28 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
<valid>0:</valid>
</arg>
</function>
<!-- std::ostream& std::ostream::put(char c);-->
<function name="std::ostream::put">
<returnValue type="std::ostream &amp;"/>
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1" direction="in">
<not-uninit/>
<not-bool/>
<valid>0:</valid>
</arg>
</function>
<!-- std::stringstream& std::stringstream::put(char c);-->
<function name="std::stringstream::put">
<returnValue type="std::stringstream &amp;"/>
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1" direction="in">
<not-uninit/>
<not-bool/>
<valid>0:</valid>
</arg>
</function>
<!-- wint_t putwchar(wchar_t wc); -->
<function name="putwchar,std::putwchar">
<returnValue type="wint_t"/>