mirror of
https://github.com/NixOS/nix
synced 2025-06-27 00:11:17 +02:00
replaced uncaught_exception with uncaught_exceptions
This commit is contained in:
parent
29542865ce
commit
c9d06558b6
3 changed files with 3 additions and 3 deletions
|
@ -1199,7 +1199,7 @@ void _interrupted()
|
|||
/* Block user interrupts while an exception is being handled.
|
||||
Throwing an exception while another exception is being handled
|
||||
kills the program! */
|
||||
if (!interruptThrown && !std::uncaught_exception()) {
|
||||
if (!interruptThrown && !std::uncaught_exceptions()) {
|
||||
interruptThrown = true;
|
||||
throw Interrupted("interrupted by the user");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue