Intel® C++ Compiler
Community support and assistance for creating C++ code that runs on platforms based on Intel® processors.
7830 Discussions

Compiler segfault on __interface with non-abstract member

dnesteruk
Beginner
231 Views

The following chunk of code crashes the compiler:

__interface IFoo
{
  void Calculate(int) {}
};

int main()
{
  IFoo* foo;
  foo->Calculate(31);

    return 0;
}

 

0 Kudos
1 Solution
Kittur_G_Intel
Employee
231 Views

Hi, 

This issue is fixed in the 2016 beta version of the product (beta ended last month or so) and  I'll update you as soon as the product with the fix for this issue is out. I've also responded to you in a private email with more details.

_Kittur 

View solution in original post

0 Kudos
2 Replies
Kittur_G_Intel
Employee
232 Views

Hi, 

This issue is fixed in the 2016 beta version of the product (beta ended last month or so) and  I'll update you as soon as the product with the fix for this issue is out. I've also responded to you in a private email with more details.

_Kittur 

0 Kudos
Kittur_G_Intel
Employee
231 Views

Hi,
Just letting you know that the 2016 version was released last week and should contain the fix for this issue. You can download the latest version from the Intel Registration Center, thanks.
_Kittur

0 Kudos
Reply