The following is a piece of a much larger file. This used to compile but since<br>some changes else where in the file it no longer does. I'm baffled. g2_n is a member<br>variable to the Grid class, as are all the other variables being output. This code fragment<br>
is part of a function that is in the Grid class. I tried breaking the output into two<br>statements but I still got the same error. I have tried on two machines. One is running<br>Debian lenny, the other Debian squeeze. The compiler revisions are 4.3 and 4.4<br>
<br>Can anybody give me a clue?<br><br><br> if (i_cnt < 10) {<br> std::ostringstream file_name;<br> file_name << "ch" << i_cnt << std::ends;<br> std::ofstream test_file(file_name.str().c_str());<br>
test_file << std::setprecision(15);<br> test_file << " r X_n X_nf Z_n Z_nf g1_n g1_nf g2_n g2_nf mass_n mass_nf";<br> test_file << std::endl;<br> for (int i = 0; i < size; i++) {<br>
test_file << r1[i] << ' ' << X_n[i] << ' ' << X_nf[i] << ' ' << Z_n[i] << ' ' << Z_nf[i]<br> << " " << g1_n[i] << " " << g1_nf[i] << " " g2_n[i] << " " << g2_nf[i] << ' ' // this is line 1785<br>
<< mass_n[i] << ' ' << mass_nf[i] << std::endl;<br> }<br> i_cnt++;<br><br><br>grid.cc: In member function 'void Grid::interpolate_from_parent(Special_Float)':<br>grid.cc:1785: error: expected `;' before 'g2_n'<br>
make: *** [grid.o] Error 1<br><br>