$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Kresimir Fresl (fresl_at_[hidden])
Date: 2002-12-10 10:09:26
Toon Knapen wrote:
> #if (__GNUC__ >= 3) && ( __GNUC_MINOR__ >= 1 )
> #define BOOST_NO_IS_SORTED
> #define BOOST_NO_IOTA
> #endif
g++ 3.2 has is_sorted() and iota(), although not in
`std' namespace, but in `__gnu_cxx'. Files are in
subdirectory `ext'; therefore:
#include <ext/numeric>
#include <ext/algorithm>
fres