Merge branch 'blender-v3.2-release'

This commit is contained in:
Campbell Barton 2022-05-19 14:32:51 +10:00
commit ae11233b65
1 changed files with 4 additions and 2 deletions

View File

@ -19,8 +19,10 @@ struct NodeEnum {
}
void insert(const char *x, int y)
{
left[ustring(x)] = y;
right[y] = ustring(x);
ustring ustr_x(x);
left[ustr_x] = y;
right[y] = ustr_x;
}
bool exists(ustring x) const