std.cfg: Added support for std::ostream::put() and std::stringstream::put().
This commit is contained in:
parent
080ba9004c
commit
9a163e59bf
22
cfg/std.cfg
22
cfg/std.cfg
|
@ -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 &"/>
|
||||
<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 &"/>
|
||||
<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"/>
|
||||
|
|
Loading…
Reference in New Issue