Update of /cvsroot/adobe-source/adobe-source/adobe/test/visual/headers/mac
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17172/adobe/test/visual/headers/mac
Modified Files:
ui_core_implementation.hpp
Log Message:
asl 1.0.2
Index: ui_core_implementation.hpp
===================================================================
RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/visual/headers/mac/ui_core_implementation.hpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ui_core_implementation.hpp 17 Mar 2005 18:03:16 -0000 1.1
--- ui_core_implementation.hpp 2 Apr 2005 05:47:39 -0000 1.2
***************
*** 21,29 ****
/****************************************************************************************************/
#define ADOBE_DELETE_PTR_SPECIALIZATION(type, func) \
template <> \
! struct adobe::delete_ptr<##type> \
{ \
! void operator()(##type x) const \
{ if (x) func(x); } \
}
--- 21,33 ----
/****************************************************************************************************/
+ namespace adobe {
+
+ /****************************************************************************************************/
+
#define ADOBE_DELETE_PTR_SPECIALIZATION(type, func) \
template <> \
! struct adobe::delete_ptr<type> \
{ \
! void operator()(type x) const \
{ if (x) func(x); } \
}
***************
*** 53,60 ****
/****************************************************************************************************/
- namespace adobe {
-
- /****************************************************************************************************/
-
// REVISIT (fbrereto) : I'd like to be able to set this up 1) so the fudges can be made on a
// per-OS-version basis, 2) so they can be adjusted without requiring
--- 57,60 ----
|