- fix some cpp check warnings and errors
- fix "property_copy" which has no selfassign now git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@836 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
@@ -238,14 +238,14 @@ class VertexVertexIterT
|
||||
/// Return the handle of the current target.
|
||||
typename Mesh::VertexHandle handle() const {
|
||||
assert(mesh_);
|
||||
return mesh_->to_vertex_handle(heh_);;
|
||||
return mesh_->to_vertex_handle(heh_);
|
||||
}
|
||||
|
||||
|
||||
/// Cast to the handle of the current target.
|
||||
operator typename Mesh::VertexHandle() const {
|
||||
assert(mesh_);
|
||||
return mesh_->to_vertex_handle(heh_);;
|
||||
return mesh_->to_vertex_handle(heh_);
|
||||
}
|
||||
|
||||
|
||||
@@ -432,14 +432,14 @@ class ConstVertexVertexIterT
|
||||
/// Return the handle of the current target.
|
||||
typename Mesh::VertexHandle handle() const {
|
||||
assert(mesh_);
|
||||
return mesh_->to_vertex_handle(heh_);;
|
||||
return mesh_->to_vertex_handle(heh_);
|
||||
}
|
||||
|
||||
|
||||
/// Cast to the handle of the current target.
|
||||
operator typename Mesh::VertexHandle() const {
|
||||
assert(mesh_);
|
||||
return mesh_->to_vertex_handle(heh_);;
|
||||
return mesh_->to_vertex_handle(heh_);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user