/in/foo.cc: In member function 'int Date::YearMonthDay()':
/in/foo.cc:23:46: error: no matching function for call to 'Date::isLeap()'
23 | if(month==2) return 28+isLeap();
| ~~~~~~^~
/in/foo.cc:16:14: note: candidate: 'bool Date::isLeap(int)'
16 | bool isLeap(int y)
| ^~~~~~
/in/foo.cc:16:14: note: candidate expects 1 argument, 0 provided
/in/foo.cc: In member function 'int Date::Diff(Date&)':
/in/foo.cc:47:25: error: no matching function for call to 'Date::Pass()'
47 | int num=Pass();
| ~~~~^~
/in/foo.cc:28:13: note: candidate: 'int Date::Pass(int, int, int)'
28 | int Pass(int y,int m,int d)
| ^~~~
/in/foo.cc:28:13: note: candidate expects 3 arguments, 0 provided
/in/foo.cc:50:29: error: no matching function for call to 'Date::YearDay()'
50 | num += d.YearDay()-d.Pass();
| ~~~~~~~~~^~
/in/foo.cc:43:13: note: candidate: 'int Date::YearDay(int)'
43 | int YearDay(int y) { return 365+isLeap(y); }
| ^~~~~~~
/in/foo.cc:43:13: note: candidate expects 1 argument, 0 provided
/in/foo.cc:50:38: error: no matching function for call to 'Date::Pass()'
50 | num += d.YearDay()-d.Pass();
| ~~~~~~^~
/in/foo.cc:28:13: note: candidate: 'int Date::Pass(int, int, int)'
28 | int Pass(int y,int m,int d)
| ^~~~
/in/foo.cc:28:13: note: candidate expects 3 arguments, 0 provided