$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2006-04-27 13:57:33
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.