diff options
Diffstat (limited to 'include/clang/Tooling/AllTUsExecution.h')
-rw-r--r-- | include/clang/Tooling/AllTUsExecution.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Tooling/AllTUsExecution.h b/include/clang/Tooling/AllTUsExecution.h index f199365dc815..94bf01632fb4 100644 --- a/include/clang/Tooling/AllTUsExecution.h +++ b/include/clang/Tooling/AllTUsExecution.h @@ -45,6 +45,8 @@ public: StringRef getExecutorName() const override { return ExecutorName; } + bool isSingleProcess() const override { return true; } + using ToolExecutor::execute; llvm::Error @@ -70,6 +72,8 @@ private: unsigned ThreadCount; }; +extern llvm::cl::opt<std::string> Filter; + } // end namespace tooling } // end namespace clang |