> i'm getting an access fault when leaving a catch:
>
[quoted text clipped - 21 lines]
>
> this looks like a bug in cw to me.
I'm having trouble replicating these symptoms:
#include <stdexcept>
#include <iostream>
int main()
{
try
{
throw std::runtime_error("some error ocurred");
}
catch (std::runtime_error err)
{
std::cout << "Handling error\n";
}
std::cout << "Done\n";
}
Could you create a complete demo, and either post it here, mail it
directly to me, or submit it to support@metrowerks.com ?
Thanks,
-Howard