Created
April 16, 2013 23:37
-
-
Save brechtvl/5400574 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git src/include/refcnt.h src/include/refcnt.h | |
index 53a7f15..37068c5 100644 | |
--- src/include/refcnt.h | |
+++ src/include/refcnt.h | |
@@ -44,14 +44,16 @@ | |
// Use Boost for shared pointers | |
#include <boost/tr1/memory.hpp> | |
-using std::tr1::shared_ptr; | |
#include <boost/intrusive_ptr.hpp> | |
-using boost::intrusive_ptr; | |
OIIO_NAMESPACE_ENTER | |
{ | |
+using std::tr1::shared_ptr; | |
+using boost::intrusive_ptr; | |
+ | |
+ | |
/// Mix-in class that adds a reference count, implemented as an atomic | |
/// counter. | |
class RefCnt { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment