diff options
author | Mark Spruiell <mes@zeroc.com> | 2003-11-21 00:14:47 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2003-11-21 00:14:47 +0000 |
commit | d9cc4541f9aae9ea1b2d71987023937e2eec74c4 (patch) | |
tree | e2e12b6e6ed3fd807b70a9e6fc1681510235dc00 /cpp/src/Transform/Data.cpp | |
parent | minor output fix (diff) | |
download | ice-d9cc4541f9aae9ea1b2d71987023937e2eec74c4.tar.bz2 ice-d9cc4541f9aae9ea1b2d71987023937e2eec74c4.tar.xz ice-d9cc4541f9aae9ea1b2d71987023937e2eec74c4.zip |
another output fix for proxy
Diffstat (limited to 'cpp/src/Transform/Data.cpp')
-rw-r--r-- | cpp/src/Transform/Data.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Transform/Data.cpp b/cpp/src/Transform/Data.cpp index bcb9e60f6ad..688bd5f807d 100644 --- a/cpp/src/Transform/Data.cpp +++ b/cpp/src/Transform/Data.cpp @@ -1851,7 +1851,7 @@ Transform::ProxyData::getValue() const void Transform::ProxyData::printI(IceUtil::Output& out, ObjectDataHistory&) const { - out << typeName(_type) << "(" << toString() << ")"; + out << typeName(_type) << '(' << (_value ? toString() : "nil") << ')'; } void |