Skip to content

Commit 4c06a3e

Browse files
committed
Actually *define* verbosity setter
1 parent b05519f commit 4c06a3e

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

include/mesh/mesh_tet_interface.h

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class MeshTetInterface
107107
/**
108108
* verbosity setting
109109
*/
110-
const unsigned int _verbosity;
110+
unsigned int _verbosity;
111111

112112
/**
113113
* Remove volume elements from the given mesh, after converting
@@ -200,6 +200,17 @@ class MeshTetInterface
200200
std::unique_ptr<std::vector<std::unique_ptr<UnstructuredMesh>>> _holes;
201201
};
202202

203+
204+
// ------------------------------------------------------------
205+
// MeshTetInterface class member functions
206+
inline
207+
void
208+
MeshTetInterface::set_verbosity(unsigned int v)
209+
{
210+
this->_verbosity = v;
211+
}
212+
213+
203214
} // namespace libMesh
204215

205216
#endif // LIBMESH_MESH_TET_INTERFACE_H

0 commit comments

Comments
 (0)