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

Compiler segfault on __interface with non-abstract member

dnesteruk
Beginner
304 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
KitturGanesh
Employee
304 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
KitturGanesh
Employee
305 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
KitturGanesh
Employee
304 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