From: stephan b. <sg...@us...> - 2004-12-26 02:09:35
|
Update of /cvsroot/pclasses/pclasses2/src/s11n In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12626/src/s11n Modified Files: data_node.h Log Message: Fixed a bug brought on by removal of to_string() dep. Index: data_node.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/s11n/data_node.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- data_node.h 26 Dec 2004 00:55:20 -0000 1.2 +++ data_node.h 26 Dec 2004 02:09:26 -0000 1.3 @@ -342,7 +342,7 @@ template < typename T > void set( const std::string & key, const T & val ) { ::P::Util::LexT lex(val); - this->set_string( key, val ); + this->set_string( key, lex ); } /** |