diff options
Diffstat (limited to 'llvm/tools/llvm-strings/llvm-strings.cpp')
-rw-r--r-- | llvm/tools/llvm-strings/llvm-strings.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/tools/llvm-strings/llvm-strings.cpp b/llvm/tools/llvm-strings/llvm-strings.cpp index 69a3b12..f6d08a1 100644 --- a/llvm/tools/llvm-strings/llvm-strings.cpp +++ b/llvm/tools/llvm-strings/llvm-strings.cpp @@ -58,9 +58,11 @@ static constexpr opt::OptTable::Info InfoTable[] = { #undef OPTION }; -class StringsOptTable : public opt::OptTable { +class StringsOptTable : public opt::GenericOptTable { public: - StringsOptTable() : OptTable(InfoTable) { setGroupedShortOptions(true); } + StringsOptTable() : GenericOptTable(InfoTable) { + setGroupedShortOptions(true); + } }; } // namespace |