We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5d7097 commit 6350ba1Copy full SHA for 6350ba1
GmshReader.cpp
@@ -59,7 +59,8 @@ void GmshReader::read_mesh()
59
{
60
line = ReadLine(stream_msh);
61
node_ident_msh node_msh;
62
- stringstream ss = stringstream(line); // no error with Visual C++ 2015, error with g++
+ // stringstream ss = stringstream(line); // no error with Visual C++ 2015, error with g++ 4.8.4
63
+ stringstream ss(line); // this shall work with g++ 4.8.4
64
vector <unsigned> line_number;
65
while (!ss.eof()) {
66
unsigned number;
0 commit comments