Hi
I am trying to run the below code. I get '1102 Segmentation fault'. I added some cout's for the purpose of tracing. I get the "file open " but not the "getline". So I think the error occurs on the while(...) line.
The lines in the file contains approx 10,000 characters each, so I am wondering if this is to much to be stored in the string, hence the seg fault. Can anyone tell me how to fix this?
Regards, Carlis
void Iteration::importConfig(char *file){
using namespace std;
ifstream indata;
cout << "opening file"<< endl;
indata.open(file);
cout << "file open"<< endl;
string sLine;
int row=0;
int subrow;
while(getline(indata,sLine)){ \\ seg fault occur here
cout << "getline";
do stuff
}
}
I am trying to run the below code. I get '1102 Segmentation fault'. I added some cout's for the purpose of tracing. I get the "file open " but not the "getline". So I think the error occurs on the while(...) line.
The lines in the file contains approx 10,000 characters each, so I am wondering if this is to much to be stored in the string, hence the seg fault. Can anyone tell me how to fix this?
Regards, Carlis
void Iteration::importConfig(char *file){
using namespace std;
ifstream indata;
cout << "opening file"<< endl;
indata.open(file);
cout << "file open"<< endl;
string sLine;
int row=0;
int subrow;
while(getline(indata,sLine)){ \\ seg fault occur here
cout << "getline";
do stuff
}
}