From: stephan b. <sg...@us...> - 2004-12-26 02:27:47
|
Update of /cvsroot/pclasses/pclasses2/src/s11n In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15586/src/s11n Modified Files: data_node.h Log Message: a tiny optimistic-compiler optimization. Index: data_node.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/s11n/data_node.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- data_node.h 26 Dec 2004 02:09:26 -0000 1.3 +++ data_node.h 26 Dec 2004 02:27:23 -0000 1.4 @@ -341,8 +341,7 @@ */ template < typename T > void set( const std::string & key, const T & val ) { - ::P::Util::LexT lex(val); - this->set_string( key, lex ); + this->set_string( key, ::P::Util::LexT(val) ); } /** |