fix one more

This commit is contained in:
Sébastien Loriot 2023-04-26 09:03:28 +02:00
parent 5260100f88
commit 731905c02c
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ struct Face_map
friend
void put(Face_map m, key_type k, value_type v)
{
put(m.pm, v, m.face_ids[k]);
put(m.pm, v, static_cast<key_type>(m.face_ids[k]));
}
PM pm;