Skip to content

Commit

Permalink
[App/IO] Fix previously made incorrect replacement
Browse files Browse the repository at this point in the history
  • Loading branch information
endJunction committed Jul 19, 2023
1 parent 06d4628 commit 4f90a75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Applications/FileIO/FEFLOW/FEFLOWGeoInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ void FEFLOWGeoInterface::readPoints(QDomElement& nodesEle,
std::string line_str;
while (!ss.eof())
{
std::std::getline(ss, line_str);
std::getline(ss, line_str);
boost::trim_right(line_str);
if (line_str.empty())
{
Expand Down

0 comments on commit 4f90a75

Please sign in to comment.