From: David C. <unc...@us...> - 2005-03-30 01:49:07
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual/headers/mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11567/sandbox/adobe-source/adobe/test/visual/headers/mac Modified Files: ui_core_implementation.hpp Log Message: fixed namespace and unneeded ## Index: ui_core_implementation.hpp =================================================================== RCS file: /cvsroot/adobe-source/sandbox/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 19 Mar 2005 00:16:44 -0000 1.1 --- ui_core_implementation.hpp 30 Mar 2005 01:48:59 -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 ---- |