diff options
author | boris <boris@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-02-23 17:34:00 +0000 |
---|---|---|
committer | boris <boris@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-02-23 17:34:00 +0000 |
commit | 7529bb2f3e668d50f528e0a9c3bdb2c3c0cb0a94 (patch) | |
tree | 06c36681bc045cadbf233d16704bbc8077a406a0 /protocols/ace/RMCast/Link.cpp | |
parent | 9003b826d226e3606c50844a24c8e9ba0a7e6e67 (diff) | |
download | ATCD-7529bb2f3e668d50f528e0a9c3bdb2c3c0cb0a94.tar.gz |
ChangeLogTag: Wed Feb 23 19:48:59 2005 Boris Kolpackov <boris@kolpackov.net>
Diffstat (limited to 'protocols/ace/RMCast/Link.cpp')
-rw-r--r-- | protocols/ace/RMCast/Link.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/ace/RMCast/Link.cpp b/protocols/ace/RMCast/Link.cpp index 43c7cf3bcce..d7c2639b5ce 100644 --- a/protocols/ace/RMCast/Link.cpp +++ b/protocols/ace/RMCast/Link.cpp @@ -156,7 +156,7 @@ namespace ACE_RMCast size_t size (0), capacity (8192); char* data = reinterpret_cast<char*> (operator new (capacity)); - auto_ptr<char> holder (data); // This is wicked. + ACE_Auto_Ptr<char> holder (data); // This is wicked. while (true) { |