Cleanup: quiet compiler warnings

This commit is contained in:
Campbell Barton 2024-07-06 13:37:16 +10:00
parent 5224b1cab2
commit c4ab17ab79

@ -320,7 +320,7 @@ class Instance {
int get_recalc_flags(const ::World &world)
{
return world.last_update > depsgraph_last_update_ ? ID_RECALC_SHADING : 0;
return world.last_update > depsgraph_last_update_ ? int(ID_RECALC_SHADING) : 0;
}
private: