Skip to content

Commit ddb97c1

Browse files
committed
Fix MSVC "ambiguous symbol errors" in SourceKit
1 parent f42d1ef commit ddb97c1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tools/SourceKit/lib/SwiftLang/CodeCompletion.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
namespace SourceKit {
2222
namespace CodeCompletion {
2323

24-
using CodeCompletionDeclKind = swift::ide::CodeCompletionDeclKind;
25-
using CodeCompletionKeywordKind = swift::ide::CodeCompletionKeywordKind;
26-
using CodeCompletionLiteralKind = swift::ide::CodeCompletionLiteralKind;
27-
using SemanticContextKind = swift::ide::SemanticContextKind;
28-
using CodeCompletionString = swift::ide::CodeCompletionString;
24+
using swift::ide::CodeCompletionDeclKind;
25+
using swift::ide::CodeCompletionKeywordKind;
26+
using swift::ide::CodeCompletionLiteralKind;
27+
using swift::ide::SemanticContextKind;
28+
using swift::ide::CodeCompletionString;
2929
using SwiftResult = swift::ide::CodeCompletionResult;
30-
using CompletionKind = swift::ide::CompletionKind;
30+
using swift::ide::CompletionKind;
3131

3232
struct Group;
3333
class CodeCompletionOrganizer;

0 commit comments

Comments
 (0)