From 428daa8dd2b5593d6b61894df9a170bb8002bb8f Mon Sep 17 00:00:00 2001 From: dooglus Date: Thu, 8 Nov 2007 22:49:51 +0000 Subject: [PATCH] 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 --- ETL/trunk/ETL/_handle.h | 6 ++++++ 1 file changed, 6 insertions(+) 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: -- 2.7.4