diff options
author | Michi Henning <michi@zeroc.com> | 2004-11-25 04:18:34 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-11-25 04:18:34 +0000 |
commit | caa0420fca74674bf5d3862919da69cf90204b1f (patch) | |
tree | 842ef072c18f99250bf613cbcfefbac510e26261 /cpp/src/IceUtil/GC.cpp | |
parent | Improved test (diff) | |
download | ice-caa0420fca74674bf5d3862919da69cf90204b1f.tar.bz2 ice-caa0420fca74674bf5d3862919da69cf90204b1f.tar.xz ice-caa0420fca74674bf5d3862919da69cf90204b1f.zip |
Changed IceUtil::GCShared to derive from IceUtil::Shared.
Diffstat (limited to 'cpp/src/IceUtil/GC.cpp')
-rw-r--r-- | cpp/src/IceUtil/GC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceUtil/GC.cpp b/cpp/src/IceUtil/GC.cpp index 736fa490202..c4c592353f2 100644 --- a/cpp/src/IceUtil/GC.cpp +++ b/cpp/src/IceUtil/GC.cpp @@ -192,7 +192,7 @@ IceUtil::GC::collectGarbage() // if(pos == counts.end()) { - counts.insert(pos, ObjectCounts::value_type(*i, (*i)->_ref - 1)); + counts.insert(pos, ObjectCounts::value_type(*i, (*i)->__getRefUnsafe() - 1)); } else { |