- Remove obsolete workaround CGAL_MSVC_DUMMY_ARGUMENT (VC++ <= 7.0).

This commit is contained in:
Sylvain Pion 2004-01-18 12:40:49 +00:00
parent 801f9b8dc2
commit cc2622184d
4 changed files with 11 additions and 8 deletions

View File

@ -1,3 +1,7 @@
2.52 (18 Jan 2004)
- Remove obsolete workaround CGAL_MSVC_DUMMY_ARGUMENT (VC++ <= 7.0).
================================ CGAL 3.0 ==============================
2.51 (21 October 2003) [af]
- Fixed typo in section heading

View File

@ -767,10 +767,7 @@ template < class InputIterator, class Traits, class Items,
#endif
class HDS, class Alloc>
void convex_hull_3(InputIterator first, InputIterator beyond,
Polyhedron_3<Traits,Items,HDS,Alloc>& polyhedron
CGAL_MSVC_DUMMY_ARGUMENT)
Polyhedron_3<Traits,Items,HDS,Alloc>& polyhedron )
#else

View File

@ -1,5 +1,7 @@
Union_find Package: Release changes
----------------------------------------------------------------------
1.10 (18 Jan 2004)
- Remove obsolete workaround CGAL_MSVC_DUMMY_ARGUMENT (VC++ <= 7.0).
================================ CGAL 3.0 ==========================
1.9 (22 Oct 2003)
- new headers

View File

@ -140,7 +140,7 @@ private:
} // if we would have a const_pointer, see the cast
return r; // in the fct. below. We keep the mutable as reminder.
}
const_pointer find( const_pointer p CGAL_MSVC_DUMMY_ARGUMENT) const {
const_pointer find( const_pointer p ) const {
return find( const_cast<pointer>(p));
}
bool is_valid(const_handle v) const { return v != const_handle(0); }
@ -184,7 +184,7 @@ public:
handle find( handle p) const { return find(p.ptr()); }
const_handle find( const_handle p CGAL_MSVC_DUMMY_ARGUMENT) const {
const_handle find( const_handle p ) const {
// returns a canonical handle of the set that contains |p|,
// i.e., |P.same_set(p,q)| iff |P.find(p)| and |P.find(q)| return
// the same handle. Precond: |p| is a handle in the union find structure.