使用 Solaris CC 时的 std::BinaryPredicate 问题

发布于 2024-12-06 01:14:43 字数 684 浏览 2 评论 0原文

我在 Solaris 上使用 Sun Studio 编译器时遇到问题。它似乎与 libCstd 有关。

考虑以下代码:

#include <list>
static bool f(double fFreq1, double fFreq2) { return false; }
int main()
{
    std::list< double > l;
    l.unique(f);
}

我得到的错误消息是:

"uniq.cpp", line 6: Error: Could not find a match for std::list<double>::unique(bool(double,double)) needed in main().

但是当我使用引用而不是值时,它编译得很好:

#include <list>
static bool f(const double& fFreq1, const double& fFreq2) { return false; }
int main()
{
    std::list< double > l;
    l.unique(f);
}

使用 g++ 的编译都可以。有谁知道发生了什么事?谢谢 !

I have a problem on Solaris using the Sun Studio compiler. It seems related to libCstd.

Consider the following code :

#include <list>
static bool f(double fFreq1, double fFreq2) { return false; }
int main()
{
    std::list< double > l;
    l.unique(f);
}

The error message I get is :

"uniq.cpp", line 6: Error: Could not find a match for std::list<double>::unique(bool(double,double)) needed in main().

But when I use references instead of values, it compiles just fine :

#include <list>
static bool f(const double& fFreq1, const double& fFreq2) { return false; }
int main()
{
    std::list< double > l;
    l.unique(f);
}

Compilation is ok for both using g++. Does anyone know what is going on ? Thanks !

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

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

发布评论

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

评论(1

蓝天白云 2024-12-13 01:14:43

尝试使用 -library=stlport4 进行构建,因为标准 C++ 库不符合标准。请参阅 http://www.oracle。 com/technetwork/server-storage/solarisstudio/documentation/cplusplus-faq-355066.html#LibComp5 了解更多信息。

Try building with -library=stlport4 as the standard C++ library is not standards compliant. See http://www.oracle.com/technetwork/server-storage/solarisstudio/documentation/cplusplus-faq-355066.html#LibComp5 for more info.

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