
2 Aug
2008
2 Aug
'08
9:24 p.m.
Alp Mestan wrote:
Hi,
Sorry, had many things to do.
I'm having many errors when trying to compile the Test file you've put with the header.
Here are some of the errors : http://rafb.net/p/TGP3FO40.html
PS : I've renamed the header and put it in the boost include dir.
Hi, Thanks for the report. I get the same errors when I try to compile the unit tests with gcc 4.0.0. The problem seems to be that gcc requires the standard namespace be specified as std, rather than as ::std in the template parameter list of member templates. To solve this issue I replaced all occurrences of "::std::size_t" with "std::size_t". Now the code compiles with gcc 4.0.0. I also updated the .zip file. Regards, Angel Tsankov