prog.cpp:29:35: error: postfix ‘Month& Date::operator++(Month&)’ must take ‘int’ as its argument
Month& operator++(Month &m) {
^
prog.cpp: In member function ‘void Date::add_month()’:
prog.cpp:35:13: error: no match for ‘operator++’ (operand type is ‘Month’)
++m;
^~~
prog.cpp: In function ‘int main()’:
prog.cpp:42:4: error: no match for ‘operator++’ (operand type is ‘Month’)
++m;
^~~