removed extra space in an example in CP.2 (#1654)

This commit is contained in:
cadenzasong
2020-07-26 11:23:33 -07:00
committed by GitHub
parent 6f50150e94
commit d4e2281a09

View File

@@ -14025,7 +14025,7 @@ Local static variables are a common source of data races.
##### Example, bad: ##### Example, bad:
void f(fstream& fs, regex pattern) void f(fstream& fs, regex pattern)
{ {
array<double, max> buf; array<double, max> buf;
int sz = read_vec(fs, buf, max); // read from fs into buf int sz = read_vec(fs, buf, max); // read from fs into buf