summaryrefslogtreecommitdiff
path: root/src/options/options_template.cpp
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2018-01-08 22:04:02 -0800
committerGitHub <noreply@github.com>2018-01-08 22:04:02 -0800
commit3c6398194b01372720964590b2b07d93590e511d (patch)
tree1e1f40d79eeabe8b30524fe96d279a4f3d5b8fd7 /src/options/options_template.cpp
parent707e27e61addafdbcce5e7b6d32a61985f563dfb (diff)
Removing more miscellaneous throw specifiers. (#1488)
Removing more miscellaneous throw specifiers.
Diffstat (limited to 'src/options/options_template.cpp')
-rw-r--r--src/options/options_template.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/options/options_template.cpp b/src/options/options_template.cpp
index a48b22625..9de47b388 100644
--- a/src/options/options_template.cpp
+++ b/src/options/options_template.cpp
@@ -787,7 +787,8 @@ ${all_modules_option_handlers}
free(argv);
}
-std::string Options::suggestCommandLineOptions(const std::string& optionName) throw() {
+std::string Options::suggestCommandLineOptions(const std::string& optionName)
+{
DidYouMean didYouMean;
const char* opt;
@@ -804,7 +805,9 @@ static const char* smtOptions[] = {
NULL
};/* smtOptions[] */
-std::vector<std::string> Options::suggestSmtOptions(const std::string& optionName) throw() {
+std::vector<std::string> Options::suggestSmtOptions(
+ const std::string& optionName)
+{
std::vector<std::string> suggestions;
const char* opt;
@@ -817,7 +820,8 @@ std::vector<std::string> Options::suggestSmtOptions(const std::string& optionNam
return suggestions;
}
-std::vector< std::vector<std::string> > Options::getOptions() const throw() {
+std::vector<std::vector<std::string> > Options::getOptions() const
+{
std::vector< std::vector<std::string> > opts;
${all_modules_get_options}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback