| ▲ | elteto a day ago | ||||||||||||||||||||||
Not exactly sure what your experience is, but if you work with in an -fno-exceptions codebase then you know that STL containers are not usable in that regime (with the exception of std::tuple it seems, see freestanding comment below). I would argue that the majority of use cases of the STL is for its containers. So, what exact parts of the STL do you use in your code base? Most be mostly compile time stuff (types, type trait, etc). | |||||||||||||||||||||||
| ▲ | alchemio a day ago | parent [-] | ||||||||||||||||||||||
You can use std containers in a no-exceptions environment. Just know that if an error occurs the program will terminate. | |||||||||||||||||||||||
| |||||||||||||||||||||||