Skip to content

Commit b0540fe

Browse files
authored
Merge pull request #3732 from swiftwasm/main
[pull] swiftwasm from main
2 parents 001dd21 + 65278d3 commit b0540fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/SourceKit/tools/sourcekitd-test/sourcekitd-test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,9 +216,9 @@ static void skt_main(skt_args *args);
216216
int main(int argc, const char **argv) {
217217
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
218218
skt_args args = {argc, argv, 0};
219-
llvm::thread Thread(llvm::thread::DefaultStackSize,
219+
llvm::thread thread(llvm::thread::DefaultStackSize,
220220
skt_main, &args);
221-
Thread.join();
221+
thread.join();
222222
exit(args.ret);
223223
});
224224

0 commit comments

Comments
 (0)