P
PLS
If I understand the difference correctly, when compiling with /EHs
"catch" will only catch objects that were "throw"n. With /EHa, "catch"
will catch thise plus will catch things like addressing exceptions.
When compiling with /EHa, can exceptions like addressing exceptions be
caught as a specific type, like
catch(object &x)
or must they be caught with a generic catch
catch(...)
If so, what is the type for addressing exception? Where do I find the
other C++ objects for system exceptions documented?
Thanks,
++PLS
"catch" will only catch objects that were "throw"n. With /EHa, "catch"
will catch thise plus will catch things like addressing exceptions.
When compiling with /EHa, can exceptions like addressing exceptions be
caught as a specific type, like
catch(object &x)
or must they be caught with a generic catch
catch(...)
If so, what is the type for addressing exception? Where do I find the
other C++ objects for system exceptions documented?
Thanks,
++PLS