Hi, here EMX (under OS/2) uses a nonstandard size_t breaking Menu.cc. Fix is to do a
static_cast eg changing around line 363 this
index = std::min(index, _items.size());
to this
index = std::min(static_cast<size_t>(index), _items.size());
If this doesn't break anything could this be changed in CVS?
Dave










































-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
List archives:  http://asgardsrealm.net/lurker/splash/index.html
Trouble? Contact [EMAIL PROTECTED]

Reply via email to