我在使用 clang 编译器的 C++ 中的前向声明存在问题。这是我的代码。它将 CReference 成员中的数据指向不完整类型。请帮忙
class Internal;
class CReference {
private:
Internal data;
public:
CReference () {}
~CReference (){}
};
class Internal {
public:
Internal () {}
~Internal () {}
};