Re: [Flightgear-devel] ver. 0.9.8 run-time error using VisualC++

2005-02-03 Thread Drew
Yep, that fixed it...thanks a lot. Drew On Wed, 2 Feb 2005 15:52:13 -0500, Vance Souders [EMAIL PROTECTED] wrote: I had the same problem; isspace was interpreting the copyright symbol as a negative number, raising the assert. I changed the calls to isspace(...) in strutils.cxx to ...

RE: [Flightgear-devel] ver. 0.9.8 run-time error using VisualC++

2005-02-02 Thread Vance Souders
I had the same problem; isspace was interpreting the copyright symbol as a negative number, raising the assert. I changed the calls to isspace(...) in strutils.cxx to ... std::isspace((unsigned char)str[i], std::locale()) ... You'll also need to include locale. -Vance -Original