[PATCH] D43065: [clangd] Remove threading-related code from ClangdUnit.h

Ilya Biryukov via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Feb 8 06:58:01 PST 2018


ilya-biryukov added a comment.

Thanks for the NITs :-)



================
Comment at: clangd/ClangdUnit.cpp:399
+  std::unique_ptr<CompilerInvocation> CI;
+  {
+    // FIXME(ibiryukov): store diagnostics from CommandLine when we start
----------------
ioeric wrote:
> Do we still need this block?
I added it to avoid referencing local variables declared there.

I would move this to be a separate function rather than removing the braces here, but other may have different opinions :-)
WDYT? Does a separate function sound ok?


Repository:
  rCTE Clang Tools Extra

https://reviews.llvm.org/D43065





More information about the cfe-commits mailing list