$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Mark Rodgers (mark.rodgers_at_[hidden])
Date: 2000-06-26 03:21:27
> So much work has happened
> recently that I wanted to give people a chance to test it and make sure
it
> still works with your compilers/libraries.
Yes, it works for me with both Borland compilers.
// 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.
Mark