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.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/options/options.h b/src/options/options.h
index ce0e3c347..608b9906a 100644
--- a/src/options/options.h
+++ b/src/options/options.h
@@ -321,11 +321,13 @@ public:
*
* This function uses getopt_long() and is not thread safe.
*
+ * Throws OptionException on failures.
+ *
* Preconditions: options and argv must be non-null.
*/
static std::vector<std::string> parseOptions(Options* options,
- int argc, char* argv[])
- throw(OptionException);
+ int argc,
+ char* argv[]);
/**
* Get the setting for all options.
@@ -534,7 +536,6 @@ public:
void flushOut();
private:
-
/**
* Internal procedure for implementing the parseOptions function.
* Initializes the options object based on the given command-line
@@ -543,12 +544,13 @@ public:
*
* This is not thread safe.
*
+ * Throws OptionException on failures.
+ *
* Preconditions: options, extender and nonoptions are non-null.
*/
static void parseOptionsRecursive(Options* options,
options::ArgumentExtender* extender,
- std::vector<std::string>* nonoptions)
- throw(OptionException);
+ std::vector<std::string>* nonoptions);
};/* class Options */
}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback