/in/foo.cc: In member function 'bool CDtime::isLeap()':
/in/foo.cc:10:53: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
10 | bool isLeap() {return year%400==0||year%4==0&&year%100!=0;}
| ~~~~~~~~~^~~~~~~~~~~~~
/in/foo.cc: In member function 'bool CDtime::isLeap(int)':
/in/foo.cc:11:61: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
11 | bool isLeap(int year) {return year%400==0||year%4==0&&year%100!=0;}
| ~~~~~~~~~^~~~~~~~~~~~~
/in/foo.cc: In member function 'int CDtime::diffday(CDtime&)':
/in/foo.cc:39:41: error: 'y' was not declared in this scope
39 | num+=365+isLeap(y)-dt.Passday()+Passday();
| ^