$include_dir="/home/hyper-archives/boost-testing/include"; include("$include_dir/msg-header.inc") ?>
From: Hartmut Kaiser (hartmut.kaiser_at_[hidden])
Date: 2008-02-04 13:55:06
Hi all,
there are two tests failing for Wave on the stdcxx_gcc platform, caused by a
missing '#include <istream>' in the file
program_options/detail/config_file.hpp. This file already conrains:
#if BOOST_WORKAROUND(__DECCXX_VER, BOOST_TESTED_AT(60590042))
#include <istream> // std::getline
#endif
So I assume Volodyja wanted to avoid pulling in this header in the general
case. What's the pp constants I can use to include this fix for the
stdcxx_gcc platform as well? I'ld like to write something like:
#if BOOST_WORKAROUND(__DECCXX_VER, BOOST_TESTED_AT(60590042)) ||
BOOST_WORKAROUND(..., BOOST_TESTED_AT(...)) // what to insert here?
#include <istream> // std::getline
#endif
Regards Hartmut