We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 001dd21 + 65278d3 commit b0540feCopy full SHA for b0540fe
tools/SourceKit/tools/sourcekitd-test/sourcekitd-test.cpp
@@ -216,9 +216,9 @@ static void skt_main(skt_args *args);
216
int main(int argc, const char **argv) {
217
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
218
skt_args args = {argc, argv, 0};
219
- llvm::thread Thread(llvm::thread::DefaultStackSize,
+ llvm::thread thread(llvm::thread::DefaultStackSize,
220
skt_main, &args);
221
- Thread.join();
+ thread.join();
222
exit(args.ret);
223
});
224
0 commit comments