mfdesire / Publications
Forum
Code generation error when passing arguments by reference
Hi all, Here is a piece of code, generating a 'code generation error' compilation error. class A { public: virtual int doSomething( const int& elementsCount, double& arrData[] ) { return 0; } };