21 Nov
2011
21 Nov
'11
4:33 p.m.
Hello list! In the docmantation for boost.uuid on this link: http://www.boost.org/doc/libs/1_48_0/libs/uuid/uuid.html#Stream_operators in the example of usage boost::lexical_cast<> with boost::uuids::uuid: boost::uuids::uuid u1; // initialize uuid std::string s = boost::lexical_caststd::string(u); // <<<<<<<<<<<< must be u1 boost::uuids::uuid u2 = boost::lexical_castboost::uuids::uuid(s); assert(u1 == u2); I wish that boost documentation was famous as well as Qt documentation ;) Regards, niXman.