forked from OSchip/llvm-project
[MSVC] Fix a warning C4334 "'operator' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?)".
llvm-svn: 137803
This commit is contained in:
parent
93b86e494d
commit
203f87ccb1
|
@ -2063,8 +2063,7 @@ void AugmentedCodeCompleteConsumer::ProcessCodeCompleteResults(Sema &S,
|
|||
bool AddedResult = false;
|
||||
unsigned InContexts
|
||||
= (Context.getKind() == CodeCompletionContext::CCC_Recovery? NormalContexts
|
||||
: (1 << (Context.getKind() - 1)));
|
||||
|
||||
: (1ULL << (Context.getKind() - 1)));
|
||||
// Contains the set of names that are hidden by "local" completion results.
|
||||
llvm::StringSet<llvm::BumpPtrAllocator> HiddenNames;
|
||||
typedef CodeCompletionResult Result;
|
||||
|
|
Loading…
Reference in New Issue