From: Artem Dergachev Date: Wed, 17 Jan 2018 23:03:25 +0000 (+0000) Subject: [analyzer] operator new: Fix ambigious type name. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ae35084689a917a9dd2dd240f4e9d94b76ea3f5;p=clang [analyzer] operator new: Fix ambigious type name. Hopefully fixes an MSVC buildbot failure. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@322781 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/StaticAnalyzer/Core/ExprEngine.cpp b/lib/StaticAnalyzer/Core/ExprEngine.cpp index 7b0964757a..5851c98d86 100644 --- a/lib/StaticAnalyzer/Core/ExprEngine.cpp +++ b/lib/StaticAnalyzer/Core/ExprEngine.cpp @@ -65,7 +65,7 @@ REGISTER_TRAIT_WITH_PROGRAMSTATE(InitializedTemporariesSet, typedef llvm::ImmutableMap, SVal> - CXXNewAllocatorValuesTy; + CXXNewAllocatorValuesMap; // Keeps track of return values of various operator new() calls between // evaluation of the inlined operator new(), through the constructor call, @@ -75,7 +75,8 @@ typedef llvm::ImmutableMap