升压 C++宏参数计数错误

发布于 2024-10-26 04:24:34 字数 269 浏览 5 评论 0原文

在下面的代码中:

BOOST_FOREACH(std::pair<PID, bool> &itval, completedEs_) {
    allCompleted &= it->second;
}

我收到此错误:

错误:宏“BOOST_FOREACH”传递了 3 参数,但只需要 2

,我只传递 2 个参数,这是怎么回事?

In the following piece of code:

BOOST_FOREACH(std::pair<PID, bool> &itval, completedEs_) {
    allCompleted &= it->second;
}

I'm getting this error:

error: macro "BOOST_FOREACH" passed 3
arguments, but takes just 2

I'm only passing 2 arguments, what's going on?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

青衫儰鉨ミ守葔 2024-11-02 04:24:34

第一个类型被解析为两个参数,因为它包含一个逗号。
作为解决方法,您可以 typedef 类型:

typedef std::pair<PID, bool> PID_bool_pair;
BOOST_FOREACH( PID_bool_pair &itval, completedEs_) {
    ...
}

The first type is being parsed as two arguments since it contains a comma.
As a workaround you could typedef the type:

typedef std::pair<PID, bool> PID_bool_pair;
BOOST_FOREACH( PID_bool_pair &itval, completedEs_) {
    ...
}
冧九 2024-11-02 04:24:34

由于 BOOST_FOREACH 宏限制,您不能这样做,请像下面这样重写:

//...
typedef std::pair<PID, bool> mypair;
BOOST_FOREACH(mypair &itval, completedEs_) {
    allCompleted &= it->second;
}
//...

You can't do that because of BOOST_FOREACH macro limitations, rewrite it like:

//...
typedef std::pair<PID, bool> mypair;
BOOST_FOREACH(mypair &itval, completedEs_) {
    allCompleted &= it->second;
}
//...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文