Robert Hairgrove <bob <at> roberthairgrove.com> writes: > If argp_parse calls exit() and terminates the program, will the destructors > of my C++ objects be called?
Silly question ... now I realize that they won't be called unless I take appropriate precautions, such as keeping a global vector of unique_ptr's or something along those lines.