1

我正在使用 boost 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