Skip to content

Commit b209316

Browse files
committed
Fix compile error
1 parent ca68632 commit b209316

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/IDE/CodeCompletionCache.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,8 +424,7 @@ static std::string getName(StringRef cacheDirectory,
424424
// name[-dot][-testable][-inits]
425425
OSS << (K.ResultsHaveLeadingDot ? "-dot" : "")
426426
<< (K.ForTestableLookup ? "-testable" : "")
427-
<< (K.ForPrivateLookup ? "-private" : "")
428-
<< (K.CodeCompleteInitsInPostfixExpr ? "-inits" : "");
427+
<< (K.ForPrivateImportLookup ? "-private" : "")
429428
<< (K.CodeCompleteInitsInPostfixExpr ? "-inits" : "");
430429

431430
// name[-access-path-components]

0 commit comments

Comments
 (0)