Jonathan Polley
writes:
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
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;
Cheers
Norman
