- Fix Handle_for<> default ctor : it forgot to construct the object.

This commit is contained in:
Sylvain Pion 2002-01-04 14:07:53 +00:00
parent 77d0796ac2
commit 9f15241994
3 changed files with 5 additions and 0 deletions

View File

@ -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.

View File

@ -75,6 +75,7 @@ class Handle_for
Handle_for()
{
ptr_ = allocator.allocate(1);
initialize_with(T());
}
Handle_for(const T& t)

View File

@ -75,6 +75,7 @@ class Handle_for
Handle_for()
{
ptr_ = allocator.allocate(1);
initialize_with(T());
}
Handle_for(const T& t)