diff --git a/Applications/FileIO/GocadIO/Layer.cpp b/Applications/FileIO/GocadIO/Layer.cpp index b3233392645715850171563321c2f7b8ca6420e7..7ce3f6bd2a5c92d98d7eb62444111c679cb302ff 100644 --- a/Applications/FileIO/GocadIO/Layer.cpp +++ b/Applications/FileIO/GocadIO/Layer.cpp @@ -22,12 +22,11 @@ namespace Gocad std::ostream& operator<<(std::ostream& os, Layer const& l) { std::copy(l.regions.begin(), l.regions.end(), - std::ostream_iterator<Gocad::Region>(os, " ")); + std::ostream_iterator<Region>(os, " ")); return os; } -Layer parseLayer(std::string const& line, - std::vector<Gocad::Region> const& regions) +Layer parseLayer(std::string const& line, std::vector<Region> const& regions) { std::istringstream iss(line); std::istream_iterator<std::string> it(iss); @@ -45,7 +44,7 @@ Layer parseLayer(std::string const& line, { auto const& region_it = std::find_if(regions.begin(), regions.end(), - [&](Gocad::Region const& r) { return r.name == *it; }); + [&](Region const& r) { return r.name == *it; }); if (region_it != regions.end()) { l.regions.push_back(*region_it); diff --git a/Applications/FileIO/GocadIO/Layer.h b/Applications/FileIO/GocadIO/Layer.h index 7f09ccadb4fd8ab3eeaf7be5db6610122e840954..dc8565f9ee241d35163935f2d134db9e8fb5db2d 100644 --- a/Applications/FileIO/GocadIO/Layer.h +++ b/Applications/FileIO/GocadIO/Layer.h @@ -32,8 +32,7 @@ struct Layer final std::ostream& operator<<(std::ostream& os, Layer const& l); -Layer parseLayer(std::string const& line, - std::vector<Gocad::Region> const& regions); +Layer parseLayer(std::string const& line, std::vector<Region> const& regions); } // end namespace Gocad } // end namespace FileIO