std.cfg: Added support for std::ofstream::write().
This commit is contained in:
parent
89d4cefa96
commit
92d8b9d68f
14
cfg/std.cfg
14
cfg/std.cfg
|
@ -6233,6 +6233,20 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<returnValue type="bool"/>
|
||||
<noreturn>false</noreturn>
|
||||
</function>
|
||||
<!--std::ofstream& std::ofstream::write (const char* s, streamsize n);-->
|
||||
<function name="std::ofstream::write">
|
||||
<returnValue type="std::ofstream &"/>
|
||||
<leak-ignore/>
|
||||
<noreturn>false</noreturn>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
<not-null/>
|
||||
</arg>
|
||||
<arg nr="2" direction="in">
|
||||
<not-uninit/>
|
||||
<valid>1:</valid>
|
||||
</arg>
|
||||
</function>
|
||||
<!--std::ostream& std::ostream::write (const char* s, streamsize n);-->
|
||||
<function name="std::ostream::write">
|
||||
<returnValue type="std::ostream &"/>
|
||||
|
|
Loading…
Reference in New Issue