From: Ricardo Markiewicz Date: Thu, 15 Sep 2005 04:26:53 +0000 (+0000) Subject: Fix en conversion a string X-Git-Tag: 1_0-pre1~126 X-Git-Url: https://git.llucax.com/z.facultad/75.52/treemulator.git/commitdiff_plain/ecf0c05bcdc4ea9457feae6ef43378afc89a2fe1?ds=inline Fix en conversion a string --- 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; }