mirror of https://github.com/CGAL/cgal
Fixed a bug where we try to deref a reference in get_decorated_mesh().
This commit is contained in:
parent
3b23fc1a1f
commit
c06c1c09d9
|
|
@ -255,8 +255,8 @@ public:
|
|||
}
|
||||
|
||||
/// @return the decorated mesh.
|
||||
Adaptor& get_decorated_mesh() { return *m_mesh_adaptor; }
|
||||
const Adaptor& get_decorated_mesh() const { return *m_mesh_adaptor; }
|
||||
Adaptor& get_decorated_mesh() { return m_mesh_adaptor; }
|
||||
const Adaptor& get_decorated_mesh() const { return m_mesh_adaptor; }
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
/// @subheading Methods implementing the ParameterizationMesh_3 interface
|
||||
|
|
|
|||
Loading…
Reference in New Issue