diff options
Diffstat (limited to 'cpp/src/IceGrid/Allocatable.cpp')
-rw-r--r-- | cpp/src/IceGrid/Allocatable.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/cpp/src/IceGrid/Allocatable.cpp b/cpp/src/IceGrid/Allocatable.cpp index ddadaf12eb3..df21a3fbfdb 100644 --- a/cpp/src/IceGrid/Allocatable.cpp +++ b/cpp/src/IceGrid/Allocatable.cpp @@ -152,9 +152,12 @@ 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 constructor initializaton: + // + // _parent((parent && parent->isAllocatable()) ? parent : AllocatablePtr()) + // + // doesn't work on HP-UX (aCC: HP ANSI C++ B3910B A.03.56). It + // results in a SEGFAULT at runtime. // if(parent && parent->isAllocatable()) { |