unbalanced parenthesis found while processing a member function
The member function definition ended with a parenthesis instead of a curly brace.
The following is an example of this error:
class C {
public:
void func()
{
); // error, parenthesis instead of curly brace
};