USA or view http://www.gnu.org/copyleft/gpl.html.
**********************************************************************/
-#include <simgear/compiler.h> // to disable C4244 d to f warning
+#include <simgear/compiler.h> // MSVC: to disable C4244 d to f warning
#include "uiuc_1Dinterpolation.h"
void ParseFile :: removeComments(string& inputLine)
{
- unsigned int pos = inputLine.find_first_of(COMMENT);
+ int pos = inputLine.find_first_of(COMMENT);
if (pos != inputLine.npos) // a "#" exists in the line
{
string ParseFile :: getToken(string inputLine, int tokenNo)
{
- unsigned int pos = 0;
- unsigned int pos1 = 0;
+ int pos = 0;
+ int pos1 = 0;
int tokencounter = 0;
while (tokencounter < tokenNo)
void ParseFile :: storeCommands(string inputLine)
{
- unsigned int pos;
+ int pos;
int pos1;
// int wordlength;
string line;