boost pool_allocator 报错 'rebind'

#include "stdafx.h"

#include <vector>
#include <boost/pool/pool.hpp>

int _tmain(int argc, _TCHAR* argv[])
{
	std::vector<int, boost::pool_allocator<int>> v;
	return 0;
}

编译报错:

d:\program files\microsoft visual studio 10.0\vc\include\vector(421): error C2903: 'rebind' : symbol is neither a class template nor a function template

怀疑是pool_allocator与Vc的STL不兼容。

后来发现是应该使用pool_alloc.hpp头文件才行:

#include <boost/pool/pool_alloc.hpp>

Boost文档仅假定

// Include all of Pool files
#include <boost/pool.hpp>

实际上,boost/pool.hpp 不存在。

感叹模板类的编译错误信息太没头绪。

后来发现其中有一行错误:

d:\program files\microsoft visual studio 10.0\vc\include\vector(421): error C2027: use of undefined type 'boost::pool_allocator<T>'

为了这一行错误,总的出错报告接近400行。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值