Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual/headers
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21699/sandbox/adobe-source/adobe/test/visual/headers
Modified Files:
ui_core.hpp
Log Message:
fixed use of __MWERKS__
Index: ui_core.hpp
===================================================================
RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual/headers/ui_core.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ui_core.hpp 23 Mar 2005 18:51:58 -0000 1.3
--- ui_core.hpp 3 Apr 2005 00:31:38 -0000 1.4
***************
*** 247,251 ****
std::string format(const Numeric& x)
{
! #ifdef __MWERKS__
return format<adobe::value_t>(adobe::value_t(x));
#elif defined(BOOST_MSVC)
--- 247,251 ----
std::string format(const Numeric& x)
{
! #if ADOBE_PLATFORM_MAC
return format<adobe::value_t>(adobe::value_t(x));
#elif defined(BOOST_MSVC)
***************
*** 260,264 ****
Numeric parse(const std::string& str, adobe::value_t = adobe::value_t())
{
! #ifdef __MWERKS__
return parse<adobe::value_t>(str, adobe::value_t(Numeric())).template get<Numeric>();
#elif defined(BOOST_MSVC)
--- 260,264 ----
Numeric parse(const std::string& str, adobe::value_t = adobe::value_t())
{
! #if ADOBE_PLATFORM_MAC
return parse<adobe::value_t>(str, adobe::value_t(Numeric())).template get<Numeric>();
#elif defined(BOOST_MSVC)
|