/in/foo.cc:12:7: error: expected class-name before '(' token
~time(){}
^
/in/foo.cc:14:1: error: expected ';' after class definition
}
^
/in/foo.cc: In constructor 'Time::Time(int, int, int)':
/in/foo.cc:11:44: error: 'h' was not declared in this scope
Time(int hour,int minute,int second):hour(h),minute(m),second(s){}
^
/in/foo.cc:11:54: error: 'm' was not declared in this scope
Time(int hour,int minute,int second):hour(h),minute(m),second(s){}
^
/in/foo.cc:11:64: error: 's' was not declared in this scope
Time(int hour,int minute,int second):hour(h),minute(m),second(s){}
^
/in/foo.cc: In member function 'int Time::Adds()':
/in/foo.cc:18:1: warning: no return statement in function returning non-void [-Wreturn-type]
}
^