
On Thu, 18 Sep 2008 00:42:42 +0200, "Manuel Fiorelli" <manuel.fiorelli@gmail.com> said:
Hello, I have some notes about docs and implementations.
In the examples you use the class std:vector without any parameter (may be char?).
Yes, they should be std::vector<char>
Looking at the code, in the file seed_rng.hpp: you should add the following includes #include <cstring> // where std:memcpy is declared #include <boost/generator_iterator.hpp> // where boost:generator is defined
Yes, both includes should be there.
in the file uuid.hpp: at line 259 you should add typename in front of helper_type::value_type
I believe so.
I would appreciate if you could let me know if you find this notes correct or if I was missing something.
Best regards, Manuel Fiorelli
Thank you very much. Andy Tompkins