From: dooglus Date: Thu, 8 Nov 2007 22:49:51 +0000 (+0000) Subject: Make the 'obj' member of handle and loose_handle public when debugging. It's useful... X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=428daa8dd2b5593d6b61894df9a170bb8002bb8f;p=synfig.git Make the 'obj' member of handle and loose_handle public when debugging. It's useful sometimes to be able to compare the addresses of the object behind the handles. git-svn-id: http://svn.voria.com/code@1117 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/ETL/trunk/ETL/_handle.h b/ETL/trunk/ETL/_handle.h index 498c083..32a37ad 100644 --- a/ETL/trunk/ETL/_handle.h +++ b/ETL/trunk/ETL/_handle.h @@ -140,6 +140,9 @@ public: typedef int size_type; protected: +#ifdef _DEBUG +public: +#endif value_type *obj; //!< Pointer to object public: @@ -631,6 +634,9 @@ public: typedef int size_type; protected: +#ifdef _DEBUG +public: +#endif value_type *obj; //!< Pointer to object public: