I am getting the following error while building the code in VC:
error C2143: syntax error : missing ')' before '&'
on building the below code:
typedef unsigned int uint4;
void Find(uint4& a, uint4 b, uint4 c);
void Find(uint4& a, uint4 b, uint4 c)
{
. . . .
}
I do not see any error in code.
Any idea as to why this error is coming up?