mirror of
https://github.com/NixOS/nix
synced 2025-06-25 14:51:16 +02:00
parent
7f9a0033c7
commit
bd79c1f6f6
5 changed files with 7 additions and 7 deletions
|
@ -111,9 +111,9 @@ static void parseJSON(EvalState & state, const char * & s, Value & v)
|
|||
mkFloat(v, stod(tmp_number));
|
||||
else
|
||||
mkInt(v, stol(tmp_number));
|
||||
} catch (std::invalid_argument e) {
|
||||
} catch (std::invalid_argument & e) {
|
||||
throw JSONParseError("invalid JSON number");
|
||||
} catch (std::out_of_range e) {
|
||||
} catch (std::out_of_range & e) {
|
||||
throw JSONParseError("out-of-range JSON number");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue