From ecf0c05bcdc4ea9457feae6ef43378afc89a2fe1 Mon Sep 17 00:00:00 2001 From: Ricardo Markiewicz Date: Thu, 15 Sep 2005 04:26:53 +0000 Subject: [PATCH] Fix en conversion a string --- src/btree_data.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/btree_data.h b/src/btree_data.h index b07f6f5..7ea7d9c 100644 --- a/src/btree_data.h +++ b/src/btree_data.h @@ -24,8 +24,8 @@ class BTreeData { virtual operator std::string () const { std::string out = (*clave); std::stringstream ss; - ss << "(" << out << ") "; - ss << "[" << hijo << "]"; + ss << "(" << out ; + ss << ")" << "[" << hijo << "]"; ss >> out; return out; } -- 2.43.0