
1 Jun
2007
1 Jun
'07
7:16 a.m.
uuid is using std::find without qualification and so it conflicts with boost::find declared in the string_algo.
Qualified both find invokations with std:: - now it's working
Looking through the uuid.hpp code, there are lots of 'using namespace' directives. Althoug they are only local, they could cause problems, especialy in the scope of boost.
So they should prefented in general? Oliver