diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/SolverCmdLine.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/klee/SolverCmdLine.h b/include/klee/SolverCmdLine.h index c6fb6654..255b3848 100644 --- a/include/klee/SolverCmdLine.h +++ b/include/klee/SolverCmdLine.h @@ -82,12 +82,11 @@ extern llvm::cl::opt<klee::MetaSMTBackendType> MetaSMTBackend; class KCommandLine { public: + /// Hide all options in the specified category + static void HideOptions(llvm::cl::OptionCategory &Category); + /// Hide all options except the ones in the specified category static void HideUnrelatedOptions(llvm::cl::OptionCategory &Category); - - /// Hide all options except the ones in the specified categories - static void HideUnrelatedOptions( - llvm::ArrayRef<const llvm::cl::OptionCategory *> Categories); }; } // namespace klee |