使用 boost::shared_ptr 编译 std::map 时出错
我正在尝试在 vs2005 中编译我的代码。 我正在使用 std::map 和 boost::shared_ptr (v1.47.0) 我的代码看起来像这样
struct B {
int a;
}
typedef boost::shared_ptr<B> K;
std::map<const std::string, K > mymap;
//some code
std::map<const std::string, K >::iterator it;
for (it = mymap.begin(); it < mymap.end(); it++ )
{
//do something
}
编译器在 for 语句处给出错误。 以下是错误
C2784: 'bool boost::operator <(const boost::intrusive_ptr &,const boost::intrusive_ptr &)' : 无法推导出 'const boost::intrusive_ptr &' 的模板参数来自“std::_Tree<_Traits>::iterator”。
任何帮助表示赞赏。 谢谢。
I am trying to compile my code in vs2005.
I am using std::map and boost::shared_ptr (v1.47.0)
My code looks something like this
struct B {
int a;
}
typedef boost::shared_ptr<B> K;
std::map<const std::string, K > mymap;
//some code
std::map<const std::string, K >::iterator it;
for (it = mymap.begin(); it < mymap.end(); it++ )
{
//do something
}
The compiler is giving an error at the for statement.
The following is the error
error C2784: 'bool boost::operator <(const boost::intrusive_ptr &,const boost::intrusive_ptr &)' : could not deduce template argument for 'const boost::intrusive_ptr &' from 'std::_Tree<_Traits>::iterator'.
Any help is appreciated.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用了错误的运算符来检查
mymap.end()
。将循环更改为You are using the wrong operator for the checking against
mymap.end()
. Change the loop to