std.cfg: Attempt to add (partial) support for std::istringstream::get.

This commit is contained in:
orbitcowboy 2019-06-05 13:54:38 +02:00
parent 0b726d5738
commit 080ba9004c
1 changed files with 7 additions and 1 deletions

View File

@ -6094,9 +6094,15 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
std::istream& std::istream::get (char* s, streamsize n, char delim);
stream buffer (3) std::istream& std::istream::get (streambuf& sb);
std::istream& std::istream::get (streambuf& sb, char delim);-->
<!-- single character (1) int std::istringstream::get ();
std::istringstream& std::istringstream::get (char& c);
c-string (2) std::istringstream& std::istringstream::get (char* s, streamsize n);
std::istringstream& std::istringstream::get (char* s, streamsize n, char delim);
stream buffer (3) std::istringstream& std::istringstream::get (streambuf& sb);
std::istringstream& std::istringstream::get (streambuf& sb, char delim);-->
<!-- There is currently no way to define this properly because Cppcheck lacks support for
overloaded functions.-->
<function name="std::istream::get">
<function name="std::istream::get,std::istringstream::get">
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="any"/>