summaryrefslogtreecommitdiffstats
path: root/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
diff options
context:
space:
mode:
authorAnna Zaks <ganna@apple.com>2016-01-23 00:45:37 +0000
committerAnna Zaks <ganna@apple.com>2016-01-23 00:45:37 +0000
commitf293295dd52468dd70449edc0442b86912e18461 (patch)
tree04db372739e3dae36ef634128eabd23754b1b8c3 /include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
parentf5a6cecb8da7522684057bdf1029c01317029664 (diff)
[analyzer] Fixup r258572 Utility to match function calls.
Initialize the IdentifierInfo pointer. Hope this fixes the buildbot breakage. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@258591 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h')
-rw-r--r--include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h b/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
index a67204c3bd..55fd4b8880 100644
--- a/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
+++ b/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
@@ -67,7 +67,7 @@ public:
/// call. Omit this parameter to match every occurance of call with a given
/// name regardless the number of arguments.
CallDescription(StringRef FuncName, unsigned RequiredArgs = NoArgRequirement)
- : FuncName(FuncName), RequiredArgs(RequiredArgs) {}
+ : II(nullptr), FuncName(FuncName), RequiredArgs(RequiredArgs) {}
};
template<typename T = CallEvent>