mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 12:44:42 +03:00
Fix cpplint issues
Rconc-create0.cpp:20: Line ends in whitespace. Consider deleting these extra spaces. [whitespace/end_of_line] [4] Res-always5.cpp:15: Missing space after , [whitespace/comma] [3] Rp-lib0.cpp:15: Missing space after , [whitespace/comma] [3] Rs-using-directive0.cpp:25: Extra space after ( in function call [whitespace/parens] [4] Rs-using-directive0.cpp:25: Extra space before ) [whitespace/parens] [2]
This commit is contained in:
committed by
Thibault Kruse
parent
48b40df328
commit
a2dba2e78b
@@ -12494,8 +12494,7 @@ Thread creation is expensive.
|
|||||||
// process
|
// process
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void master(istream& is)
|
||||||
(istream& is)
|
|
||||||
{
|
{
|
||||||
for (Message m; is >> m; )
|
for (Message m; is >> m; )
|
||||||
run_list.push_back(new thread(worker, m));
|
run_list.push_back(new thread(worker, m));
|
||||||
|
|||||||
Reference in New Issue
Block a user