mirror of https://github.com/CGAL/cgal
- Fix Handle_for<> default ctor : it forgot to construct the object.
This commit is contained in:
parent
77d0796ac2
commit
9f15241994
|
|
@ -1,3 +1,6 @@
|
|||
3.73 (4 January 2002)
|
||||
- Fix Handle_for<> default ctor : it forgot to construct the object.
|
||||
|
||||
3.72 (14 December 2001)
|
||||
- VC++ 7 support by Radu.
|
||||
|
||||
|
|
|
|||
|
|
@ -75,6 +75,7 @@ class Handle_for
|
|||
Handle_for()
|
||||
{
|
||||
ptr_ = allocator.allocate(1);
|
||||
initialize_with(T());
|
||||
}
|
||||
|
||||
Handle_for(const T& t)
|
||||
|
|
|
|||
|
|
@ -75,6 +75,7 @@ class Handle_for
|
|||
Handle_for()
|
||||
{
|
||||
ptr_ = allocator.allocate(1);
|
||||
initialize_with(T());
|
||||
}
|
||||
|
||||
Handle_for(const T& t)
|
||||
|
|
|
|||
Loading…
Reference in New Issue