10

我有这个 .h 文件:

namespace{

class Invariant{
public:
  Invariant(z3::expr e,Instruction *i):Expr(e),I(i){
    DenseMap<Instruction*,Invariant*> FunMap = Invariants[F];
  }

private:
  //static map
  static DenseMap<Function*, DenseMap<Instruction*,Invariant*> >Invariants;

};
}//end of anonymous namespace

当我编译clang时说:

Invariant.h:46:65: warning: variable '<anonymous namespace>::Invariant::Invariants' has internal linkage but is not defined
  static DenseMap<Function*, DenseMap<Instruction*,Invariant*> >Invariants;
                                                                ^
Invariant.h:26:48: note: used here
    DenseMap<Instruction*,Invariant*> FunMap = Invariants[F];

这里有什么问题?

4

1 回答 1

8

只需定义它。在类定义之后但在匿名命名空间结束之前添加以下行:

DenseMap<Function*, DenseMap<Instruction*,Invariant*> > Invariant::Invariants;

这将在包含此标头的每个翻译单元中创建静态成员(没关系,因为它位于匿名命名空间中,每个翻译单元都是唯一的)。这可能不是您想要的,但这是Invariant在匿名命名空间中定义的结果。如果您改用命名空间,则可以将 的定义Invariants放入源文件中,并且所有代码只共享一个对象。

于 2013-04-08T14:28:30.990 回答