Skip to content

Commit d4e2281

Browse files
authored
removed extra space in an example in CP.2 (isocpp#1654)
1 parent 6f50150 commit d4e2281

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
@@ -14025,7 +14025,7 @@ Local static variables are a common source of data races.
1402514025

1402614026
##### Example, bad:
1402714027

14028-
void f(fstream& fs, regex pattern)
14028+
void f(fstream& fs, regex pattern)
1402914029
{
1403014030
array<double, max> buf;
1403114031
int sz = read_vec(fs, buf, max); // read from fs into buf

0 commit comments

Comments
 (0)