|
From: <no...@so...> - 2002-10-24 22:36:58
|
Bugs item #627757, was opened at 2002-10-23 21:12 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=380760&aid=627757&group_id=24184 Category: Server Group: None >Status: Closed >Resolution: Fixed Priority: 5 Submitted By: Alexey Vasilyev (alexvas) >Assigned to: Tom Howard (tomhoward) Summary: Server GCC 3.2 compiling errors Initial Comment: There is an error on SServer 9.0.4 compiling by GCC 3.2 The problem is that this compiler doesn't allow to have default parameters both in .h and .cpp files. To fix it you have to apply the following patches to the source code. ========================================= diff- landmarkreader.C ========================================= 753c753 < const bool& goal = false) --- > const bool& goal) ========================================= diff- netif.C ========================================= 583c583 < void OnlineCoach::say(char *message, bool standard = false) --- > void OnlineCoach::say(char *message, bool standard) ---------------------------------------------------------------------- >Comment By: Tom Howard (tomhoward) Date: 2002-10-24 17:25 Message: Logged In: YES user_id=189676 Fixed and committed. Will be available in the next release or now via anonymous cvs. Cheers, Tom ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=380760&aid=627757&group_id=24184 |