$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Peter Dimov (pdimov_at_[hidden])
Date: 2024-04-01 17:21:47
Ivan Matek wrote:
> Or why is
>
> #include <boost/foreach.hpp>
>
> still available in latest boost?
We should probably do something about that. Unfortunately,
`#define BOOST_FOREACH(VAR, COL) for(VAR: COL)` doesn't
work (of course) because as it turns out BOOST_FOREACH
supports iteration over string literals and std::pair<Iter, Iter>.