taxonomy::cast - order upgrades in the same order as in taxonomy::dcast for consistency

This commit is contained in:
Andrej730
2024-09-12 11:19:37 +05:00
parent f930897240
commit cb21f9bc07
+2 -2
View File
@@ -1270,13 +1270,13 @@ typedef item const* ptr;
}
}
{
edge_to_loop_upgrade<T> upg(u);
curve_to_face_upgrade<T> upg(u);
if (upg) {
return upg;
}
}
{
curve_to_face_upgrade<T> upg(u);
edge_to_loop_upgrade<T> upg(u);
if (upg) {
return upg;
}