extern(C++) no intellisense VD

Rainer Schuetze via Digitalmars-d-ide digitalmars-d-ide at puremagic.com
Thu Jul 14 23:23:11 PDT 2016



On 13.07.2016 01:13, Adam Sansier wrote:
> When specifying a class or struct to be extern(C++), intellisense breaks.
>

Could you give a concrete example? This works for me:

extern(C++) class CC
{
	void foo() {}

	int xyz;
}

void fun()
{
	CC cc;
	cc.f // expansion here
}

I think the parser more or less ignores the "extern(C++)".


More information about the Digitalmars-d-ide mailing list