使用 Solaris CC 时的 std::BinaryPredicate 问题
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
-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.