Skip to content

Commit 147f4d2

Browse files
committed
Spaces in blank lines removed
1 parent f8159d2 commit 147f4d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CppCoreGuidelines.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13399,14 +13399,14 @@ Application concepts are easier to reason about.
1339913399
*msg = "Hello";
1340013400
// ...
1340113401
}
13402-
13402+
1340313403
void manual_publishing(std::string* msg)
1340413404
{
1340513405
// Encapsulates thread functionality into the application task
1340613406
std::thread publisher(publish, &msg);
1340713407
publisher.join();
1340813408
}
13409-
13409+
1341013410
void some_fun() {
1341113411
std::string msg;
1341213412
std::thread publisher(publish, &msg); // bad (less expressive and more error-prone)
@@ -13415,7 +13415,7 @@ Application concepts are easier to reason about.
1341513415
// ...
1341613416
publisher.join();
1341713417
}
13418-
13418+
1341913419
##### Note
1342013420

1342113421
With the exception of `async()`, the standard-library facilities are low-level, machine-oriented, threads-and-lock level.

0 commit comments

Comments
 (0)