1

ブースト 1.52 と Visual Studio 2010 を使用しています。

によって返される要素を強制できないのはなぜだろうと思っていboost::adaptors::indirectedます。

このサンプル コードは、私が達成しようとしていることを示しています。

#include <vector>
#include <string>
#include <boost/range/adaptor/indirected.hpp>
#include <boost/foreach.hpp>

int main() {
    using std::vector;
    using std::string;

    typedef vector<string*> type;
    type range;
    range.push_back(new string("42"));
    type const& const_range = range;

    // This is ok to compile
    BOOST_FOREACH(string const& foo, const_range | boost::adaptors::indirected) {
        //...
    }

    // I don't want this to compile
    BOOST_FOREACH(string& foo, const_range | boost::adaptors::indirected) {
        //...
    }
    return 0;
}
4

0 に答える 0