Hi all,
Is clang ready to compile functions thats have arguments passed by reference? like:
void func1(int &x) {}
Regards,
Makslane
Hi all,
Is clang ready to compile functions thats have arguments passed by reference? like:
void func1(int &x) {}
Regards,
Makslane
Makslane Araújo Rodrigues wrote:
Hi all,
Is clang ready to compile functions thats have arguments passed by reference? like:
void func1(int &x) {}
We have semantic analysis support, but I don't think anyone has written the code generation yet.
Sebastian