Post #34 358 Aug 20, 2021, 13:00 UTC #cpp #stackoverflowhttps://stackoverflow.com/questions/19472550/exception-safety-and-make-unique Stack Overflow Exception safety and make_unique Just to clarify, using make_unique only adds exception safety when you have multiple allocations in an expression, not just one, correct? For example void f(T*); f(new T); is perfectly exception...