diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-09-22 21:29:33 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-09-22 21:29:33 +0200 |
commit | 893be6f5e36abb58bbaa9c49055a5218114dd514 (patch) | |
tree | 262874d6394681163e6f189f02e721f8c346ef4c /src/nix | |
parent | 14d3f450098e0f4a9b8d538545f1d1bd1decdab3 (diff) |
Don't catch exceptions by value
Diffstat (limited to 'src/nix')
-rw-r--r-- | src/nix/edit.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/edit.cc b/src/nix/edit.cc index c62b35c46..632a99d11 100644 --- a/src/nix/edit.cc +++ b/src/nix/edit.cc @@ -50,7 +50,7 @@ struct CmdEdit : InstallableCommand int lineno; try { lineno = std::stoi(std::string(pos, colon + 1)); - } catch (std::invalid_argument e) { + } catch (std::invalid_argument & e) { throw Error("cannot parse line number '%s'", pos); } |