summaryrefslogtreecommitdiff
path: root/src/options/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/options/options.h')
-rw-r--r--src/options/options.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/options/options.h b/src/options/options.h
index 474ef0f96..ce0e3c347 100644
--- a/src/options/options.h
+++ b/src/options/options.h
@@ -302,7 +302,7 @@ public:
* to the given name. Returns an empty string if there are no
* suggestions.
*/
- static std::string suggestCommandLineOptions(const std::string& optionName) throw();
+ static std::string suggestCommandLineOptions(const std::string& optionName);
/**
* Look up SMT option names that bear some similarity to
@@ -310,7 +310,8 @@ public:
* useful in case of typos. Can return an empty vector if there are
* no suggestions.
*/
- static std::vector<std::string> suggestSmtOptions(const std::string& optionName) throw();
+ static std::vector<std::string> suggestSmtOptions(
+ const std::string& optionName);
/**
* Initialize the Options object options based on the given
@@ -329,8 +330,7 @@ public:
/**
* Get the setting for all options.
*/
- std::vector< std::vector<std::string> > getOptions() const throw();
-
+ std::vector<std::vector<std::string> > getOptions() const;
/**
* Registers a listener for the notification, notifyBeforeSearch.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback