我对boost有这个问题,C++
我在fedora14 (boost 1.44)上安装了一个新的boost
我正在链接使用boost的RCF库,我也链接到boost,编译还可以,但是运行时,我得到以下错误:
src/RCF/MethodInvocation.cpp:413: Assertion failed. !mVecPtr || mVecPtr.unique() . Values:
Denver: include/RCF/util/Assert.hpp:88: virtual util::AssertFunctor::~AssertFunctor(): Assertion `0 && "See line above for assertion details."' failed发布于 2013-05-20 13:38:36
失败的断言来自对RCF库的错误使用。编译器并不总是能够检测到这种不正确的使用(或者编译器很少能够检测到)。
断言的一个可能原因是同时存在多个MethodInvocationRequest副本。
https://stackoverflow.com/questions/16649392
复制相似问题