std.cfg: Added support for std::ifstream::seekg() and std::istream::seekg().
This commit is contained in:
parent
d2732e9459
commit
1ddaa1ecf3
20
cfg/std.cfg
20
cfg/std.cfg
|
@ -6446,6 +6446,26 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
||||||
<not-uninit/>
|
<not-uninit/>
|
||||||
</arg>
|
</arg>
|
||||||
</function>
|
</function>
|
||||||
|
<!-- std::ifstream& std::ifstream::seekg (streampos pos);
|
||||||
|
std::ifstream& std::ifstream::seekg (streamoff off, ios_base::seekdir way); -->
|
||||||
|
<function name="std::ifstream::seekg">
|
||||||
|
<noreturn>false</noreturn>
|
||||||
|
<leak-ignore/>
|
||||||
|
<returnValue type="std::ifstream &"/>
|
||||||
|
<arg nr="any">
|
||||||
|
<not-uninit/>
|
||||||
|
</arg>
|
||||||
|
</function>
|
||||||
|
<!-- std::istream& std::istream::seekg (streampos pos);
|
||||||
|
std::istream& std::istream::seekg (streamoff off, ios_base::seekdir way); -->
|
||||||
|
<function name="std::istream::seekg">
|
||||||
|
<noreturn>false</noreturn>
|
||||||
|
<leak-ignore/>
|
||||||
|
<returnValue type="std::istream &"/>
|
||||||
|
<arg nr="any">
|
||||||
|
<not-uninit/>
|
||||||
|
</arg>
|
||||||
|
</function>
|
||||||
<!-- std::string& std::string::append (const std::string& str); -->
|
<!-- std::string& std::string::append (const std::string& str); -->
|
||||||
<function name="std::string::append">
|
<function name="std::string::append">
|
||||||
<noreturn>false</noreturn>
|
<noreturn>false</noreturn>
|
||||||
|
|
Loading…
Reference in New Issue