Skip to content

Commit d2be4cb

Browse files
authored
F.21 remove ; in function definition (#1592)
1 parent ab91388 commit d2be4cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CppCoreGuidelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3135,7 +3135,7 @@ such as `string` and `vector`, that needs to do free store allocations.
31353135

31363136
To compare, if we passed out all values as return values, we would something like this:
31373137

3138-
pair<istream&, string> get_string(istream& is); // not recommended
3138+
pair<istream&, string> get_string(istream& is) // not recommended
31393139
{
31403140
string s;
31413141
is >> s;

0 commit comments

Comments
 (0)