From bcec0af232e51e5b8438110e68fb0cc88c7384cf Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Wed, 12 Nov 2003 19:55:22 +0000 Subject: [PATCH] minor fix for otherwise confusing debug output [SVN r20796] --- src/converter/registry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/converter/registry.cpp b/src/converter/registry.cpp index ce12ec81..9b380311 100644 --- a/src/converter/registry.cpp +++ b/src/converter/registry.cpp @@ -134,7 +134,7 @@ namespace // # ifdef BOOST_PYTHON_TRACE_REGISTRY registry_t::iterator p = entries().find(entry(type)); - std::cout << "looking up " << type + std::cout << "looking up " << type << ": " << (p == entries().end() || p->target_type != type ? "...NOT found\n" : "...found\n"); # endif