options: catch execption by reference
This commit is contained in:
parent
7045abb5ad
commit
ad53b9f2de
@ -275,7 +275,7 @@ bytesoption::execute (const std::string& data) {
|
|||||||
specified = type_from_character (data[cursor]);
|
specified = type_from_character (data[cursor]);
|
||||||
// If the character is a digit, it just means the user skipped the
|
// If the character is a digit, it just means the user skipped the
|
||||||
// size specifier, which is ok.
|
// size specifier, which is ok.
|
||||||
} catch (domain_error x) {
|
} catch (domain_error &x) {
|
||||||
if (!isdigit (data[cursor]))
|
if (!isdigit (data[cursor]))
|
||||||
throw invalid_argument ("Not a size");
|
throw invalid_argument ("Not a size");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user