Skip to content
Snippets Groups Projects

amfe v1.0.5

Merged Adrien Crovato requested to merge adri into master
All threads resolved!
7 files
+ 247
144
Compare changes
  • Side-by-side
  • Inline
Files
7
+ 3
3
@@ -28,7 +28,7 @@ Group::Group(std::shared_ptr<MshData> _msh, int no) : wSharedObject(), msh(_msh)
if (it == msh->ptags.end())
{
std::stringstream out;
out << "Physical Group #" << no << " not found among physical tags";
out << "Group: Physical Group #" << no << " not found among physical tags";
throw std::out_of_range(out.str());
}
tag = it->second;
@@ -40,8 +40,8 @@ Group::Group(std::shared_ptr<MshData> _msh, std::string const &name) : wSharedOb
if (it == msh->ntags.end())
{
std::stringstream out;
out << "Physical Group \"" << name << "\" not found among physical tags\n";
out << "[info] available tags:\n\t";
out << "Group: Physical Group \"" << name << "\" not found among physical tags\n";
out << "[info] available tags: ";
for (auto it = msh->ntags.begin(); it != msh->ntags.end(); ++it)
{
auto itn(it);
Loading