From 82a0d3b146b6a483256f164b68cad872768b3c96 Mon Sep 17 00:00:00 2001 From: mat007 Date: Sat, 31 Aug 2013 08:11:21 +0000 Subject: [PATCH] Fix for clang git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@691 860be788-9bd5-4423-9f1e-828f051e677b --- turtle/object.hpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/turtle/object.hpp b/turtle/object.hpp index 5e2684d..789367b 100644 --- a/turtle/object.hpp +++ b/turtle/object.hpp @@ -53,15 +53,7 @@ namespace detail protected: ~object() {} - private: - friend void reset( const object& o ); - friend bool verify( const object& o ); - template< typename E > - friend E& detail::configure( const object& o, E& e, - boost::unit_test::const_string instance, - boost::optional< detail::type_name > type, - boost::unit_test::const_string name ); - private: + public: boost::shared_ptr< detail::object_impl > impl_; };