$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [test] Warnings and EDG compiler error patch.
From: Markus Schöpflin (markus.schoepflin_at_[hidden])
Date: 2009-01-20 04:55:36
John Maddock wrote:
> 2) Get the code compiling with Intel C++.
Thank you for this patch, as this fixes compilation for Tru64/CXX as well.
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__)
Markus