F.21 remove ; in function definition (#1592)

This commit is contained in:
Sylwester Fraczek 2020-03-24 17:22:45 +01:00 committed by GitHub
parent ab91388efd
commit d2be4cba57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3135,7 +3135,7 @@ such as `string` and `vector`, that needs to do free store allocations.
To compare, if we passed out all values as return values, we would something like this:
pair<istream&, string> get_string(istream& is); // not recommended
pair<istream&, string> get_string(istream& is) // not recommended
{
string s;
is >> s;