Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
krangelov committed Sep 21, 2024
1 parent 43671f3 commit b86097a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/runtime/c/pgf/namespace.h
Original file line number Diff line number Diff line change
Expand Up @@ -618,6 +618,7 @@ ref<V> namespace_lookup_index(Namespace<V> map, PgfText *name, size_t *pIndex)
map = map->right;
*pIndex += Node<ref<V>>::size(map->left)+1;
} else {
*pIndex += Node<ref<V>>::size(map->left);
return map->value;
}
}
Expand Down

0 comments on commit b86097a

Please sign in to comment.