summaryrefslogtreecommitdiff
path: root/lout/container.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lout/container.cc')
-rw-r--r--lout/container.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/lout/container.cc b/lout/container.cc
index 06c023b9..602553d3 100644
--- a/lout/container.cc
+++ b/lout/container.cc
@@ -211,8 +211,9 @@ int Vector::bsearch(Object *key, bool mustExist, int start, int end,
// new implementation.
DBG_OBJ_MSGF ("container", 0,
- "<b>bsearch</b> (<i>key</i>, %s, %d, %d, <i>comparator</i>",
- mustExist ? "true" : "false", start, end);
+ "<b>bsearch</b> (<i>key</i>, %s, %d, %d, <i>comparator</i>) "
+ "[size is %d]",
+ mustExist ? "true" : "false", start, end, size ());
DBG_OBJ_MSG_START ();
int result = -123; // Compiler happiness: GCC 4.7 does not handle this?