[analyzer] Fixup r258572 Utility to match function calls.

Initialize the IdentifierInfo pointer. Hope this fixes the buildbot breakage.

llvm-svn: 258591
This commit is contained in:
Anna Zaks 2016-01-23 00:45:37 +00:00
parent 160dcba81f
commit e2fcffb0f9
1 changed files with 1 additions and 1 deletions

View File

@ -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>