Cleanup: undeclared warnings

This commit is contained in:
Campbell Barton 2020-07-10 11:40:38 +10:00
parent 3623db7784
commit 92bc277950
1 changed files with 7 additions and 5 deletions

View File

@ -547,7 +547,7 @@ void SCULPT_visibility_sync_all_vertex_to_face_sets(SculptSession *ss)
}
}
bool sculpt_check_unique_face_set_in_base_mesh(SculptSession *ss, int index)
static bool sculpt_check_unique_face_set_in_base_mesh(SculptSession *ss, int index)
{
MeshElemMap *vert_map = &ss->pmap[index];
int face_set = -1;
@ -564,9 +564,11 @@ bool sculpt_check_unique_face_set_in_base_mesh(SculptSession *ss, int index)
return true;
}
/* Checks if the face sets of the adjacent faces to the edge between v1 and v2 in the base mesh are
* equal. */
bool sculpt_check_unique_face_set_for_edge_in_base_mesh(SculptSession *ss, int v1, int v2)
/**
* Checks if the face sets of the adjacent faces to the edge between \a v1 and \a v2
* in the base mesh are equal.
*/
static bool sculpt_check_unique_face_set_for_edge_in_base_mesh(SculptSession *ss, int v1, int v2)
{
MeshElemMap *vert_map = &ss->pmap[v1];
int p1 = -1, p2 = -1;
@ -786,7 +788,7 @@ void SCULPT_vertex_neighbors_get(SculptSession *ss,
}
}
bool sculpt_check_boundary_vertex_in_base_mesh(SculptSession *ss, const int index)
static bool sculpt_check_boundary_vertex_in_base_mesh(SculptSession *ss, const int index)
{
const MeshElemMap *vert_map = &ss->pmap[index];
if (vert_map->count <= 1) {