On Tue, Mar 17, 2015 at 5:07 PM, Reid Kleckner <[email protected]> wrote:

> I've reduced it to this:
>
> template <typename T>
> struct SomeTemplate {
>   SomeTemplate(T o = T()) : o(o) {}
>   T o;
> };
> struct __declspec(dllexport) InheritFromTemplate : SomeTemplate<int> {};
>
> This asserts due to isa on a null pointer, but it asserted in the same way
> before my change.
>

It used to not assert at some point at least :-) Maybe it's from r232229
too?
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to