diff options
Diffstat (limited to 'lout/identity.cc')
-rw-r--r-- | lout/identity.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lout/identity.cc b/lout/identity.cc index c9cb7ece..61f59ace 100644 --- a/lout/identity.cc +++ b/lout/identity.cc @@ -69,7 +69,9 @@ IdentifiableObject::IdentifiableObject () void IdentifiableObject::intoStringBuffer(misc::StringBuffer *sb) { - sb->append("<instance of "); + sb->append("<instance "); + sb->appendPointer(this); + sb->append(" of "); sb->append(getClassName()); sb->append(">"); } |