|
|
|
|
|
by PaulDavisThe1st
1625 days ago
|
|
interesting case in point. i just learned today that std::variant and boost::variant differ in their: 1. exception-safety guarantees
2. real-time safety
2 is caused by 1, because to be exception safe requires a heap allocation, and that's not RT-safe.Who would want to work in a language where you could not make these choices? |
|