hi guys. I am working on class operator overloading, here I got problem with comparison operators. I am using visual studio 10 and it shows the curly underline under operator in the function definition. I have posted my code. I will really appreciated for your help.
code:
class Fractions{
public:
bool operator==(const Fractions &secFraction);
private:
int numerator;
int denominator;
};