Avoid call of pure virtual function

This commit is contained in:
Jan Möbius
2023-08-23 14:03:48 +02:00
parent b11c631ab0
commit 21eff4fb5e

View File

@@ -167,7 +167,7 @@ protected:
/// \name Overload theses methods /// \name Overload theses methods
//@{ //@{
/// Prepare mesh, e.g. add properties /// Prepare mesh, e.g. add properties
virtual bool prepare( MeshType& _m ) = 0; virtual bool prepare( MeshType& /*_m*/ ) { return true; };
/// Subdivide mesh \c _m \c _n times /// Subdivide mesh \c _m \c _n times
virtual bool subdivide( MeshType& _m, size_t _n, const bool _update_points = true) = 0; virtual bool subdivide( MeshType& _m, size_t _n, const bool _update_points = true) = 0;