diff options
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()) { |