std.cfg: Improved support for some std::ofstream functions.
This commit is contained in:
parent
9da0e785ef
commit
2ab347606a
17
cfg/std.cfg
17
cfg/std.cfg
|
@ -5857,29 +5857,38 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
||||||
<not-uninit/>
|
<not-uninit/>
|
||||||
</arg>
|
</arg>
|
||||||
</function>
|
</function>
|
||||||
|
<!-- std::string std::ostringstream::str() const; -->
|
||||||
|
<!-- @todo Implement the second version when function overloading is possible: -->
|
||||||
|
<!-- void std::ostringstream::str(const string & s); -->
|
||||||
|
<function name="std::ostringstream::str">
|
||||||
|
<use-retval/>
|
||||||
|
<const/>
|
||||||
|
<returnValue type="std::string"/>
|
||||||
|
<noreturn>false</noreturn>
|
||||||
|
</function>
|
||||||
<!-- bool good() const; -->
|
<!-- bool good() const; -->
|
||||||
<function name="std::ios::good,std::ios_base::good,std::ostream::good,std::ofstream::good">
|
<function name="std::ios::good,std::ios_base::good,std::ostream::good,std::ofstream::good,std::ostringstream::good">
|
||||||
<use-retval/>
|
<use-retval/>
|
||||||
<const/>
|
<const/>
|
||||||
<returnValue type="bool"/>
|
<returnValue type="bool"/>
|
||||||
<noreturn>false</noreturn>
|
<noreturn>false</noreturn>
|
||||||
</function>
|
</function>
|
||||||
<!-- bool eof() const; -->
|
<!-- bool eof() const; -->
|
||||||
<function name="std::ios::eof,std::ios_base::eof,std::ostream::eof,std::ofstream::eof">
|
<function name="std::ios::eof,std::ios_base::eof,std::ostream::eof,std::ofstream::eof,std::ostringstream::eof">
|
||||||
<use-retval/>
|
<use-retval/>
|
||||||
<const/>
|
<const/>
|
||||||
<returnValue type="bool"/>
|
<returnValue type="bool"/>
|
||||||
<noreturn>false</noreturn>
|
<noreturn>false</noreturn>
|
||||||
</function>
|
</function>
|
||||||
<!-- bool fail() const; -->
|
<!-- bool fail() const; -->
|
||||||
<function name="std::ios::fail,std::ios_base::fail,std::ostream::fail,std::ofstream::fail">
|
<function name="std::ios::fail,std::ios_base::fail,std::ostream::fail,std::ofstream::fail,std::ostringstream::fail">
|
||||||
<use-retval/>
|
<use-retval/>
|
||||||
<const/>
|
<const/>
|
||||||
<returnValue type="bool"/>
|
<returnValue type="bool"/>
|
||||||
<noreturn>false</noreturn>
|
<noreturn>false</noreturn>
|
||||||
</function>
|
</function>
|
||||||
<!-- bool bad() const; -->
|
<!-- bool bad() const; -->
|
||||||
<function name="std::ios::bad,std::ios_base::bad,std::ostream::bad,std::ofstream::bad">
|
<function name="std::ios::bad,std::ios_base::bad,std::ostream::bad,std::ofstream::bad,std::ostringstream::bad">
|
||||||
<use-retval/>
|
<use-retval/>
|
||||||
<const/>
|
<const/>
|
||||||
<returnValue type="bool"/>
|
<returnValue type="bool"/>
|
||||||
|
|
Loading…
Reference in New Issue