Skip to content

Commit f07c9aa

Browse files
author
Reini Urban
committed
[parrot #870] rename pmc_class_ to dynpmc_class_
1 parent a93cc27 commit f07c9aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pmc/nqplexpad.pmc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Return the LexInfo PMC, if any or a Null PMC.
119119
info = PARROT_PROXY(info)->target;
120120
proxied = 1;
121121
}
122-
if (info->vtable->base_type == pmc_class_NQPLexInfo) {
122+
if (info->vtable->base_type == dynpmc_class_NQPLexInfo) {
123123
PMC *name_map;
124124
GETATTR_NQPLexInfo_name_to_register_map(INTERP, info, name_map);
125125
hash = (Hash *)VTABLE_get_pointer(INTERP, name_map);
@@ -130,7 +130,7 @@ Return the LexInfo PMC, if any or a Null PMC.
130130
SET_ATTR_lexinfo_hash(INTERP, SELF, hash);
131131
}
132132

133-
if (!proxied && info->vtable->base_type == pmc_class_NQPLexInfo) {
133+
if (!proxied && info->vtable->base_type == dynpmc_class_NQPLexInfo) {
134134
PMC *static_slots_cache;
135135
GETATTR_NQPLexInfo_static_slots_cache(INTERP, info, static_slots_cache);
136136
if (!PMC_IS_NULL(static_slots_cache)) {
@@ -168,7 +168,7 @@ Return the LexInfo PMC, if any or a Null PMC.
168168
if (info->vtable->base_type == enum_class_Proxy) {
169169
info = PARROT_PROXY(info)->target;
170170
}
171-
if (info->vtable->base_type == pmc_class_NQPLexInfo) {
171+
if (info->vtable->base_type == dynpmc_class_NQPLexInfo) {
172172
GETATTR_NQPLexInfo_name_to_register_map(INTERP, info, name_map);
173173
hash = (const Hash *)VTABLE_get_pointer(INTERP, name_map);
174174
}

0 commit comments

Comments
 (0)