$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: David Abrahams (abrahams_at_[hidden])
Date: 2000-06-26 06:41:23
----- Original Message -----
From: "Mark Rodgers" <mark.rodgers_at_[hidden]>
> // BOOST_NO_USING_TEMPLATE: This needs some docs!
>
> I don't think this is needed any more because you are now doing gcc
> the same way as Borland 5.5. AFAICT,
>
> #if !defined(BOOST_NO_OPERATORS_IN_NAMESPACE)
> && !defined(BOOST_NO_USING_TEMPLATE)
>
> need only be
>
> #if !defined(BOOST_NO_OPERATORS_IN_NAMESPACE)
>
> because gcc requires operators and operators2 to be in the global
> namespace as well.
Actually it doesn't. I tested it with GCC as is ;)