diff options
author | Sebastian Geerken <devnull@localhost> | 2013-08-15 12:39:00 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2013-08-15 12:39:00 +0200 |
commit | bd17107d17663c847e671ff736af969b5c441e71 (patch) | |
tree | aabb246d5d8b333ee126c2f66ffa7a55ed7091aa /lout/identity.cc | |
parent | 8327ae5fc00726c4746c085ed35c3f0d02890616 (diff) |
Some debugging stuff.
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(">"); } |