diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2019-03-11 16:27:39 +0000 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-03-13 22:10:53 +0000 |
commit | c1209fba3edd49ece755d29179231de468729a2b (patch) | |
tree | 7df4ca82b8d9e98ca6b7aeb865d6df466fd64877 /include | |
parent | 891a3842d164ef4392c3f51431b6a8443092fc86 (diff) | |
download | klee-c1209fba3edd49ece755d29179231de468729a2b.tar.gz |
Added function to hide all options in a given category. Removed uneeded (and incorrectly-implemented) function for hiding all options unrelated to a set of categories.
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 |