diff options
Diffstat (limited to 'include/clang/Driver/Options.h')
-rw-r--r-- | include/clang/Driver/Options.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/clang/Driver/Options.h b/include/clang/Driver/Options.h index 2716fa9ae85eb..57e4452f3e8cc 100644 --- a/include/clang/Driver/Options.h +++ b/include/clang/Driver/Options.h @@ -10,6 +10,8 @@ #ifndef LLVM_CLANG_DRIVER_OPTIONS_H #define LLVM_CLANG_DRIVER_OPTIONS_H +#include <memory> + namespace llvm { namespace opt { class OptTable; @@ -31,7 +33,8 @@ enum ClangFlags { CLOption = (1 << 9), CC1Option = (1 << 10), CC1AsOption = (1 << 11), - NoDriverOption = (1 << 12) + NoDriverOption = (1 << 12), + Ignored = (1 << 13) }; enum ID { @@ -44,7 +47,7 @@ enum ID { }; } -llvm::opt::OptTable *createDriverOptTable(); +std::unique_ptr<llvm::opt::OptTable> createDriverOptTable(); } } |