We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b05519f commit 4c06a3eCopy full SHA for 4c06a3e
1 file changed
include/mesh/mesh_tet_interface.h
@@ -107,7 +107,7 @@ class MeshTetInterface
107
/**
108
* verbosity setting
109
*/
110
- const unsigned int _verbosity;
+ unsigned int _verbosity;
111
112
113
* Remove volume elements from the given mesh, after converting
@@ -200,6 +200,17 @@ class MeshTetInterface
200
std::unique_ptr<std::vector<std::unique_ptr<UnstructuredMesh>>> _holes;
201
};
202
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
214
} // namespace libMesh
215
216
#endif // LIBMESH_MESH_TET_INTERFACE_H
0 commit comments