new vesrion docs

This commit is contained in:
Dmitrii V Pasechnik 2001-02-07 15:24:33 +00:00
parent 02e72888b4
commit 422ea66c04
4 changed files with 30 additions and 2 deletions

View File

@ -1,3 +1,7 @@
1.0 (7/2/01)
added support for VC7.0 beta1 native STL
removed stlport/sc5, stlport/bc50, stlport/old_hp.
0.6.1 (08/12/00)
a bit more cleanup in cgal_vector.h

View File

@ -1,2 +1,6 @@
1) stlport/
A "hacked" STLport for use with MSVC-6.
Based on STLport V3.2.1.
2) vc7/
fixes for the native STL of VC7.0

View File

@ -1,4 +1,8 @@
STLport is a multiplatform implementation of C++ STL; see
Contents:
1) VC6 support
2) VC70 support
1) STLport is a multiplatform implementation of C++ STL; see
http://www.stlport.org
---------------------------------------------------------
@ -40,3 +44,19 @@ all T's for which vector<T> is present.
hence CGAL_DEFINE_ITERATOR_TRAITS_POINTER_SPEC(T) would be still
needed in this case).
-------------------------------------------------------------------
2) VC7.0 native STL needs the same treatment of iterator_traits
for pointer types as VC6. The type iterator_traits is by itself
defined OK.
So CGAL_DEFINE_ITERATOR_TRAITS_POINTER_SPEC(T) is still there,
(file vc7/stl_iterator_base.h)
but instead of STLport the native STL is used (it's considerably updated
w.r.t. VC6 STL).
File vc7/iterator contains also some fixes for <algorithm> header.
(extra overloads for functions _Iter_cat, _Dist_type, _Val_type).

View File

@ -1,2 +1,2 @@
0.6.1 (08 Dec 2000)
1.0 (07 Feb 2001)
maintainer: Dima Pasechnik <d.pasechnik@twi.tudelft.nl>