comparison liboctave/DAE.h @ 11504:81ff63e43f54

really make destuctors virtual in ODE/DAE base classes
author John W. Eaton <jwe@octave.org>
date Thu, 13 Jan 2011 03:28:21 -0500
parents cbc402e64d83
children fd0a3ac60b0e
comparison
equal deleted inserted replaced
11503:b3f511c48b14 11504:81ff63e43f54
54 DAEFunc::operator = (a); 54 DAEFunc::operator = (a);
55 } 55 }
56 return *this; 56 return *this;
57 } 57 }
58 58
59 ~DAE (void) { } 59 virtual ~DAE (void) { }
60 }; 60 };
61 61
62 #endif 62 #endif