Update of /cvsroot/adobe-source/adobe-source/adobe/source
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17172/adobe/source
Modified Files:
array.cpp eve.cpp
Log Message:
asl 1.0.2
Index: eve.cpp
===================================================================
RCS file: /cvsroot/adobe-source/adobe-source/adobe/source/eve.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** eve.cpp 17 Mar 2005 18:03:14 -0000 1.3
--- eve.cpp 2 Apr 2005 05:47:37 -0000 1.4
***************
*** 20,23 ****
--- 20,25 ----
#include <boost/iterator/transform_iterator.hpp>
+ #include <adobe/config.hpp>
+
#include <adobe/eve.hpp>
***************
*** 39,44 ****
/*************************************************************************************************/
! #ifdef BOOST_MSVC
! #include <cmath>
#endif
--- 41,46 ----
/*************************************************************************************************/
! #ifdef ADOBE_PLATFORM_WIN
! #include <cmath>
#endif
Index: array.cpp
===================================================================
RCS file: /cvsroot/adobe-source/adobe-source/adobe/source/array.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** array.cpp 3 Mar 2005 06:58:38 -0000 1.2
--- array.cpp 2 Apr 2005 05:47:36 -0000 1.3
***************
*** 53,56 ****
--- 53,58 ----
/*************************************************************************************************/
+ #if !defined(ADOBE_NO_DOCUMENTATION)
+
struct array_t::implementation_t
{
***************
*** 101,104 ****
--- 103,108 ----
};
+ #endif
+
/*************************************************************************************************/
***************
*** 108,112 ****
--- 112,121 ----
/*************************************************************************************************/
+ #if ADOBE_NAMESPACE_FRIEND_GCC_BUG
+ namespace implementation {
+ #endif
+ /*************************************************************************************************/
+ #if !defined(ADOBE_NO_DOCUMENTATION)
template <>
array_t& array_set(array_t& object, array_t::size_type index, const value_t& x)
***************
*** 132,137 ****
--- 141,151 ----
object.object_m->get(index, x);
}
+ #endif
/*************************************************************************************************/
+ #if ADOBE_NAMESPACE_FRIEND_GCC_BUG
+ } // namespace implementation
+ #endif
+ /*************************************************************************************************/
#ifdef __MWERKS__
***************
*** 234,238 ****
value_t& array_t::write_reference::operator[](size_type index)
! { return fArray.get_value_reference(index); }
/*************************************************************************************************/
--- 248,252 ----
value_t& array_t::write_reference::operator[](size_type index)
! { return array_m.get_value_reference(index); }
/*************************************************************************************************/
|