[litwindow-users] VS Express 2005 Beta (was Re: operator= no type specified)
Status: Alpha
Brought to you by:
hajokirchhoff
From: Hajo K. <mai...@ha...> - 2005-04-19 14:43:14
|
yrs90 wrote: > I loaded VS Express 2005 Beta 2. It looks like it includes the debug stl > libraries. Interestingly, I got the following errors while compiling the > LitWindow library. Yes, several options are no longer supported. > lwbase\include\litwindow\dataadapterimp.h(1089) : error C4430: missing type > specifier - int assumed. Note: C++ does not support default-int > The two errors above are WRT to the type declaration for operator=. Indeed, > this needs a type. I wonder why it didn't complain about this with the > prior compiler. They are declared private so perhaps you're not using them > yet. Thanks. I'll update that in the source. Declaring copy constructor and operator= as private prevents the class from being copied. constraint_solver objects currently cannot be copied because of pointers inside them. Hajo |