$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [test] Warnings and EDG compiler error patch.
From: John Maddock (john_at_[hidden])
Date: 2009-01-20 05:45:39
>> 2) Get the code compiling with Intel C++.
>
> Thank you for this patch, as this fixes compilation for Tru64/CXX as well.
Good.
> BTW, HP's ACC is EDG based, so you could simplify
>
> #if defined(__GNUC__) || defined(__HP_aCC) || defined(__EDG__)
>
> to
>
> #if defined(__GNUC__) || defined(__EDG__)
Nod, in fact I suspect that the first branch is the std-conforming one, and
the second should be removed or at least only used as a workaround as
required, but I'm no language lawyer so I'll leave that to Boost.Test's
author.
John.