Skip to content
Snippets Groups Projects
Commit ec2996b7 authored by Tom Fischer's avatar Tom Fischer
Browse files

[A/GocadIO] Remove unnecessary namespace.

parent 291a6aba
No related branches found
No related tags found
No related merge requests found
...@@ -602,10 +602,9 @@ MeshLib::Mesh* readData(std::ifstream& in, ...@@ -602,10 +602,9 @@ MeshLib::Mesh* readData(std::ifstream& in,
return nullptr; return nullptr;
} }
bool GocadAsciiReader::readFile( bool readFile(std::string const& file_name,
std::string const& file_name, std::vector<std::unique_ptr<MeshLib::Mesh>>& meshes,
std::vector<std::unique_ptr<MeshLib::Mesh>>& meshes, DataType const export_type)
DataType const export_type)
{ {
std::ifstream in(file_name.c_str()); std::ifstream in(file_name.c_str());
if (!in.is_open()) if (!in.is_open())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment