diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-06-19 18:42:46 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-06-19 18:42:46 +0000 |
commit | 00ca5e84fd74ebb026b56414f7e87446c89aa1cf (patch) | |
tree | d30ae00f3b5f910e1fd54490e085b97b156d7383 /cpp/src/IceGrid/Allocatable.cpp | |
parent | Fixed bug 1095 (diff) | |
download | ice-00ca5e84fd74ebb026b56414f7e87446c89aa1cf.tar.bz2 ice-00ca5e84fd74ebb026b56414f7e87446c89aa1cf.tar.xz ice-00ca5e84fd74ebb026b56414f7e87446c89aa1cf.zip |
Fixed HP-UX compiler warnings, new dependencies
Diffstat (limited to 'cpp/src/IceGrid/Allocatable.cpp')
-rw-r--r-- | cpp/src/IceGrid/Allocatable.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/Allocatable.cpp b/cpp/src/IceGrid/Allocatable.cpp index eaea2acadfe..ddadaf12eb3 100644 --- a/cpp/src/IceGrid/Allocatable.cpp +++ b/cpp/src/IceGrid/Allocatable.cpp @@ -152,7 +152,9 @@ Allocatable::Allocatable(bool allocatable, const AllocatablePtr& parent) : _releasing(false) { // - // COMPILERFIX: the initializaton _parent((parent && parent->isAllocatable()) ? parent : AllocatablePtr()) doesn't work on HP-UX. It results in a SEGFAULT at runtime. + // COMPILERFIX: the initializaton _parent((parent && + // parent->isAllocatable()) ? parent : AllocatablePtr()) doesn't + // work on HP-UX. It results in a SEGFAULT at runtime. // if(parent && parent->isAllocatable()) { |