使用 borland 编译器 5.82 运行 boost 库
我正在尝试运行“入门”示例:
#include <boost/lambda/lambda.hpp>
#include <iostream>
#include <iterator>
#include <algorithm>
int main()
{
using namespace boost::lambda;
typedef std::istream_iterator<int> in;
std::for_each(
in(std::cin), in(), std::cout << (_1 * 3) << " " );
}
将 boost 库下载到我的计算机后。但我无法让它运行。 谷歌搜索后,我发现的只是添加:
#define BOOST_REGEX_USE_VCL
#define BOOST_NO_OPERATORS_IN_NAMESPACE
#define BOOST_NO_STD_LOCALE
这仍然没有帮助。错误是:
[C++ Error] lambda_traits.hpp(435): E2238 Multiple declaration for 'bind_traits<R>'
[C++ Error] lambda_traits.hpp(389): E2344 Earlier declaration of 'bind_traits<R>'
有人有任何(进一步)想法吗?正如标题中所述,我正在使用 5.82 版本的 Borland 编译器运行。
哦...请不要建议使用其他编译器。我在工作,我不是自己的老板。 :-/
;-)
I am trying to run the "getting started" example:
#include <boost/lambda/lambda.hpp>
#include <iostream>
#include <iterator>
#include <algorithm>
int main()
{
using namespace boost::lambda;
typedef std::istream_iterator<int> in;
std::for_each(
in(std::cin), in(), std::cout << (_1 * 3) << " " );
}
after downloading the boost library to my machine. But I can't get it running.
After googling, all I found is to add:
#define BOOST_REGEX_USE_VCL
#define BOOST_NO_OPERATORS_IN_NAMESPACE
#define BOOST_NO_STD_LOCALE
That still didn't help. The error is:
[C++ Error] lambda_traits.hpp(435): E2238 Multiple declaration for 'bind_traits<R>'
[C++ Error] lambda_traits.hpp(389): E2344 Earlier declaration of 'bind_traits<R>'
Anybody any (further) ideas? As stated in the headline I'm running with the 5.82 version of the Borland compiler.
Oh...and please don't suggest to use another compiler. I'm at work, and I'm not my own boss. :-/
;-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 boost::lambda 不适用于 5.8.2 - 它甚至可能不适用于最新的 C++Builder 编译器。
查看 bcbboost 页面上的结果,并密切关注在David Dean 的博客上。
I think boost::lambda doesn't work with 5.8.2 - It may not even work with the very latest C++Builder compiler.
Have a look at the results on the bcbboost pages, and keep an eye on David Dean's blog.