std.cfg: Added support for more interfaces.
This commit is contained in:
parent
6760958e67
commit
406b29548a
34
cfg/std.cfg
34
cfg/std.cfg
|
@ -6415,11 +6415,39 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- istream& read (char* s, streamsize n); -->
|
||||
<!-- ifstream& read (char* s, streamsize n); -->
|
||||
<function name="std::istream::read,std::ifstream::read">
|
||||
<!-- std::istream& std::istream::read (char* s, streamsize n); -->
|
||||
<function name="std::istream::read">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<returnValue type="std::istream&"/>
|
||||
<arg nr="1">
|
||||
<not-null/>
|
||||
<minsize type="argvalue" arg="2"/>
|
||||
</arg>
|
||||
<arg nr="2">
|
||||
<not-uninit/>
|
||||
<valid>0:</valid>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- std::ifstream& std::ifstream::read (char* s, streamsize n); -->
|
||||
<function name="std::ifstream::read">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<returnValue type="std::ifstream&"/>
|
||||
<arg nr="1">
|
||||
<not-null/>
|
||||
<minsize type="argvalue" arg="2"/>
|
||||
</arg>
|
||||
<arg nr="2">
|
||||
<not-uninit/>
|
||||
<valid>0:</valid>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- std::wifstream& std::wifstream::read (wchar_t* s, streamsize n); -->
|
||||
<function name="std::wifstream::read">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<returnValue type="std::wifstream&"/>
|
||||
<arg nr="1">
|
||||
<not-null/>
|
||||
<minsize type="argvalue" arg="2"/>
|
||||
|
|
Loading…
Reference in New Issue