I'm so tired of this error, and I hope someone can clarify it for me. Say, I have the following:
Code:
CStringArray arr;
...
__try
{
}
__finally
{
}
For some reason this combination produces an error:
Cannot use __try in functions that require object unwinding
I end up not using the exception handling at all to make it go away, but that's not right. What shall I do instead?