提升Rtree C2228错误

时间:2015-07-31 13:26:28

标签: c++ boost

我尝试使用boost库创建一个远程树,这是我的代码:

#include <boost/geometry.hpp>
#include <boost/geometry/geometries/point.hpp>
#include <boost/geometry/geometries/box.hpp>
#include <boost/geometry/index/rtree.hpp>
#include <vector>
#include <iostream>
#include <boost/foreach.hpp>

namespace bg = boost::geometry;
namespace bgi = boost::geometry::index;
typedef bg::model::point<float, 2, bg::cs::cartesian> point;

typedef bg::model::box<point> box;
typedef std::pair<box, unsigned> value;

// create the rtree using default constructor
int main(){
    bgi::rtree< value, bgi::linear<16> > rtree;
return 0;
}

但是我收到了这个错误:

  

错误1错误C2228:&#39; .select_on_container_copy_construction&#39;必须有class / struct / union
  我正在使用boost版本1_55_0和visual studio 2013.

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。这是VS 2013和Boost 1.55的已知问题,请查看bug report here。您只需升级到更高版本的Boost。