mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-18 13:14:40 +03:00
Fix spell check regression
This commit is contained in:
@@ -3613,8 +3613,8 @@ Using `std::shared_ptr` is the standard way to represent shared ownership. That
|
|||||||
std::thread t2 {shade, args2, bottom_left, im};
|
std::thread t2 {shade, args2, bottom_left, im};
|
||||||
std::thread t3 {shade, args3, bottom_right, im};
|
std::thread t3 {shade, args3, bottom_right, im};
|
||||||
|
|
||||||
// detaching threads requires extra care (e.g., to join
|
// detaching threads requires extra care (e.g., to join before
|
||||||
// before main ends), but even if we do detach t0..3 here ...
|
// main ends), but even if we do detach the four threads here ...
|
||||||
}
|
}
|
||||||
// ... shared_ptr ensures that eventually the last thread to
|
// ... shared_ptr ensures that eventually the last thread to
|
||||||
// finish safely deletes the image
|
// finish safely deletes the image
|
||||||
|
|||||||
Reference in New Issue
Block a user