class Class
{
public:
void Function1() {std::cout<<"Function1"<<std::endl;}
void Function2() {}
};
how do you call Function1 in Function2?
i tried doing {Class::Function1();}
and i get the Error : cannot call member function 'char Class::Function1()' without object