Merge pull request #409 from agrygorenko/F-27-patch

F.27: Example fix
This commit is contained in:
hsutter
2015-12-29 13:57:07 -05:00

View File

@@ -2653,7 +2653,7 @@ Using `std::shared_ptr` is the standard way to represent shared ownership. That
##### Example
shared_ptr<Image> im { read_image(somewhere) };
shared_ptr<const Image> im { read_image(somewhere) };
std::thread t0 {shade, args0, top_left, im};
std::thread t1 {shade, args1, top_right, im};