blob: e6fb7a18bc35a0d5d40a9ced2d49a84168a4807b (
plain) (
blame)
1
2
3
4
5
6
7
|
std::random_device can fail!
```
terminate called after throwing an instance of 'std::runtime_error'
what(): random_device::random_device(const std::string&): device not available
```
We need to support a fallback path in this case, I didn't realize this was a possibility.
|