|
|
|||
File indexing completed on 2026-05-10 08:37:12
0001 //===- ToolExecutorPluginRegistry.h -----------------------------*- C++ -*-===// 0002 // 0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 0004 // See https://llvm.org/LICENSE.txt for license information. 0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 0006 // 0007 //===----------------------------------------------------------------------===// 0008 0009 #ifndef LLVM_CLANG_TOOLING_TOOLEXECUTORPLUGINREGISTRY_H 0010 #define LLVM_CLANG_TOOLING_TOOLEXECUTORPLUGINREGISTRY_H 0011 0012 #include "clang/Support/Compiler.h" 0013 #include "clang/Tooling/Execution.h" 0014 #include "llvm/Support/Registry.h" 0015 0016 namespace clang { 0017 namespace tooling { 0018 0019 using ToolExecutorPluginRegistry = llvm::Registry<ToolExecutorPlugin>; 0020 0021 } // namespace tooling 0022 } // namespace clang 0023 0024 namespace llvm { 0025 extern template class CLANG_TEMPLATE_ABI 0026 Registry<clang::tooling::ToolExecutorPlugin>; 0027 } // namespace llvm 0028 0029 #endif // LLVM_CLANG_TOOLING_TOOLEXECUTORPLUGINREGISTRY_H
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|