
27 Apr
2006
27 Apr
'06
5:57 p.m.
mahesh karanth wrote:
When I compile 'URLHandler' and 'CacheStore' independently both will compile without any errors. But when integrated with main() gives the compilation errors.
Unfortunately there is no easy way around these errors as they're due to a compiler bug. As has already been suggested you need to ensure there are no "using namespace std;" statements floating around. Failing that it is possible to hack the regex headers: replacing collate with collate_ or something, but that's a rather error prone process. John.