From: Martin H. <ma...@he...> - 2005-06-01 10:54:23
|
Hi Paul, >> There are some compiler warnings (about unused arguments) which should >> be easy to clean up. >> >> > I just read Luis his response. Yes it is cosmetic, but also simple to > solve. :-( I rephrase that, not so > simple to solve. I tried the Visual Studio solution (comment out the > unused parameter name) but that changes > the warning into an error. Nice!! adding __attribute__ ((unused)) in front of each unused parameter should make gcc shut up. I just tried it here, and it seems to work with my gcc. Martin |