[PATCH] D49890: Clang-Tidy Export Problem

Jonas Toth via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Jul 27 07:29:11 PDT 2018


JonasToth added inline comments.


================
Comment at: ClangTidy.cpp:612
+
+  std::unique_ptr<FileManager> Files =
+      make_unique<FileManager>(FileSystemOptions());
----------------
in this case you can use `auto` again, because the type of the `unique_ptr` is clear from the `make_unique` call.


Repository:
  rCTE Clang Tools Extra

https://reviews.llvm.org/D49890





More information about the cfe-commits mailing list