>> Actually, the MSVC 10.0 beta libc contains dtor's for std::length_error
>> and std::logic_error only (at least in 15s configuration which I've
tested).
>> It is still beta for now, but I believe that these dtors will go to the
>> release.
>>
>> Or should I fill the bug report to Microsoft on that issue?
>
> That would be great, thanks! With dtors for arbitrary C++ Standard
> Library in their libc there's no way to build/use a third party
> implementation such as stdcxx. Imagine one of the dtors doing
> something to the class, e.g.:
>
> class length_error: runtime_error { // MSVC 10 definition
> char* data;
> public:
> virtual ~length_error () { delete[] data; }
> // ...
> }
I've filled the issue to MS, but today they resolved this issue
with status "by design" :(
http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?Feedbac
kID=457862
Best Regards,
Farid Zaripov