From: stephan b. <sg...@us...> - 2004-12-26 14:38:09
|
Update of /cvsroot/pclasses/pclasses2/src/s11n In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8534/src/s11n Modified Files: list.h Log Message: Corrected a namespace-qualified call into the s11n namespace. Index: list.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/s11n/list.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- list.h 26 Dec 2004 07:53:19 -0000 1.4 +++ list.h 26 Dec 2004 14:38:00 -0000 1.5 @@ -149,7 +149,7 @@ const NodeType * nch = 0; CHIT it = TR::children(src).begin(); CHIT et = TR::children(src).end(); - s11n::object_reference_wrapper<SerType> dwrap(dest); + ::P::s11n::object_reference_wrapper<SerType> dwrap(dest); VT ser; // reminder: might be a pointer type std::string implclass; static const char * errprefix = "deserialize_list(node,list) "; |