summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/Allocatable.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2006-06-19 19:01:41 +0000
committerBenoit Foucher <benoit@zeroc.com>2006-06-19 19:01:41 +0000
commit3863de3bcb0aad429d41a46a95be9df4b5795119 (patch)
tree1c5f3b6823a406114efb21dcff1a006727fe2837 /cpp/src/IceGrid/Allocatable.cpp
parentFixed HP-UX compiler warnings, new dependencies (diff)
downloadice-3863de3bcb0aad429d41a46a95be9df4b5795119.tar.bz2
ice-3863de3bcb0aad429d41a46a95be9df4b5795119.tar.xz
ice-3863de3bcb0aad429d41a46a95be9df4b5795119.zip
Better comment
Diffstat (limited to 'cpp/src/IceGrid/Allocatable.cpp')
-rw-r--r--cpp/src/IceGrid/Allocatable.cpp9
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())
{