以下程序中的断言根据所使用的编译器给出不同的结果:在 GCC 4.4 中断言失败,而在 CLang 中则没有。看起来 GCC 不喜欢 V 在 C 中是私有的。这是一个错误吗?
#include <cassert>
class V {
public:
virtual ~V() { };
};
template<class T>
class C : public T, private V {
public:
static V* new_() {
return new C();
}
};
struct MyT {
};
typedef C<MyT> C_MyT;
int main(int argc, char** argv) {
V* o2 = C_MyT::new_();
assert(dynamic_cast<C_MyT*> (o2)); // failure in GCC, success in CLang
return 0;
}