Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Dec 11, 2013
2 parents 5e9bb19 + 04f456f commit c103ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared_ptr.htm
Expand Up @@ -694,7 +694,7 @@ <h2 id="ThreadSafety">Thread Safety</h2>
built-in types. A <code>shared_ptr</code> instance can be "read" (accessed
using only const operations) simultaneously by multiple threads. Different <code>shared_ptr</code>
instances can be "written to" (accessed using mutable operations such as <code>operator=
</code>or <code>reset</code>) simultaneosly by multiple threads (even
</code>or <code>reset</code>) simultaneously by multiple threads (even
when these instances are copies, and share the same reference count
underneath.)</p>
<p>Any other simultaneous accesses result in undefined behavior.</p>
Expand Down

0 comments on commit c103ace

Please sign in to comment.