Merge pull request #795 from severinmeyer/CP.41-Typo

CP.41: Fix typo in code example
This commit is contained in:
Gabriel Dos Reis 2016-11-17 06:58:32 -08:00 committed by GitHub
commit 449e1e60cf

View File

@ -12253,7 +12253,7 @@ Instead, we could have a set of pre-created worker threads processing the messag
void master(istream& is)
{
for (Message m; is >> m; )
work.put(n);
work.put(m);
}
void worker()