Behalf Of Norman Vine
Sent: Sunday, March 24, 2002 10:55 PM
To: [EMAIL PROTECTED]
Subject: RE: [Flightgear-devel] Problems Building JSBSim using MSVC 6.0
 FGFilter.cpp: In method `void FGFilter::Debug(int)':
FGFilter.cpp:224: warning: use proper indentation
FGFilter.cpp:224: warning: you are obviously a newbie; try Visual Basic 
 
If you look at line 224 there is some 'strange formatting' in the cout <<
 
I would suggest concatenating line 224 qnd line 225 into one
 --following all one line--
 cout << "      INPUT: FCS Component " << InputIdx << " (" <<  fcs->GetComponentName(InputIdx) << ")" << endl;
 
or breaking it up something like this
 
 cout << "      INPUT: FCS Component " << InputIdx << " (" ;
 cout  <<  fcs->GetComponentName(InputIdx) << ")" << endl; 
 
The error messages I wrote were a joke. Anyhow, there is no strange formatting in line 224. It's perfectly legal and straightforward. It might be confusing to *read*, I'll grant. I split it up that way to try and stay under 80 characters per line.

Reply via email to