使用 borland 编译器 5.82 运行 boost 库

发布于 2024-10-05 22:22:43 字数 876 浏览 2 评论 0原文

我正在尝试运行“入门”示例:

#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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橙味迷妹 2024-10-12 22:22:43

我认为 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文