diff options
Diffstat (limited to 'clang-tools-extra/cpp11-migrate/Core/Transform.h')
-rw-r--r-- | clang-tools-extra/cpp11-migrate/Core/Transform.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/clang-tools-extra/cpp11-migrate/Core/Transform.h b/clang-tools-extra/cpp11-migrate/Core/Transform.h index 997a95e1646..e273cf68c64 100644 --- a/clang-tools-extra/cpp11-migrate/Core/Transform.h +++ b/clang-tools-extra/cpp11-migrate/Core/Transform.h @@ -20,8 +20,9 @@ #include "Core/IncludeExcludeInfo.h" #include "Core/FileOverrides.h" #include "clang/Tooling/Refactoring.h" -#include "llvm/Support/Timer.h" #include "llvm/ADT/OwningPtr.h" +#include "llvm/Support/CommandLine.h" +#include "llvm/Support/Timer.h" /// \brief Description of the riskiness of actions that can be taken by @@ -51,6 +52,9 @@ class MatchFinder; class RewriterManager; +/// \brief To group transforms' options together when printing the help. +extern llvm::cl::OptionCategory TransformsOptionsCategory; + /// \brief Container for global options affecting all transforms. struct TransformOptions { /// \brief Enable the use of performance timers. |