diff options
author | Chris Lattner <sabre@nondot.org> | 2009-02-28 19:01:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-02-28 19:01:03 +0000 |
commit | 161d36de7ee686b09525bb919ad1b20592e499fc (patch) | |
tree | 7e074c0ac2069ba5984be3ffa5cefa18570ee065 /lib/Analysis/GRExprEngine.cpp | |
parent | ab775f62eab83f06ed972e573599031719ae2a9f (diff) |
improve compatibility with the VC++'08 C++ compiler. Patch by
Niklas Larsson!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65706 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRExprEngine.cpp')
-rw-r--r-- | lib/Analysis/GRExprEngine.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp index 8f7b674ead..916340d175 100644 --- a/lib/Analysis/GRExprEngine.cpp +++ b/lib/Analysis/GRExprEngine.cpp @@ -1357,7 +1357,8 @@ void GRExprEngine::VisitCallRec(CallExpr* CE, NodeTy* Pred, // Transfer function: Objective-C ivar references. //===----------------------------------------------------------------------===// -static std::pair<const void*,const void*> EagerlyAssumeTag(&EagerlyAssumeTag,0); +static std::pair<const void*,const void*> EagerlyAssumeTag + = std::pair<const void*,const void*>(&EagerlyAssumeTag,0); void GRExprEngine::EvalEagerlyAssume(NodeSet &Dst, NodeSet &Src, Expr *Ex) { for (NodeSet::iterator I=Src.begin(), E=Src.end(); I!=E; ++I) { |