From: Anna Zaks Date: Sat, 23 Jan 2016 00:45:37 +0000 (+0000) Subject: [analyzer] Fixup r258572 Utility to match function calls. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f293295dd52468dd70449edc0442b86912e18461;p=clang [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 --- 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