1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 10:41:16 +02:00

Fix abort in 'nix develop'

This commit is contained in:
Eelco Dolstra 2020-07-02 18:24:11 +02:00
parent a5b6e870fe
commit b5e4253697
2 changed files with 2 additions and 8 deletions

View file

@ -370,7 +370,7 @@ string printHashType(HashType ht)
default:
// illegal hash type enum value internally, as opposed to external input
// which should be validated with nice error message.
abort();
assert(false);
}
}