File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed
Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ typedef struct hek HEK;
216216# define NV_BODYLESS_UNION_
217217#endif
218218
219- #define _SV_HEAD_UNION \
219+ #define SV_HEAD_UNION_ \
220220 union { \
221221 char* svu_pv; /* pointer to malloced string */ \
222222 IV svu_iv; \
@@ -244,51 +244,51 @@ typedef struct hek HEK;
244244
245245struct STRUCT_SV { /* struct sv { */
246246 _SV_HEAD (void * );
247- _SV_HEAD_UNION ;
247+ SV_HEAD_UNION_ ;
248248};
249249
250250struct gv {
251251 _SV_HEAD (XPVGV * ); /* pointer to xpvgv body */
252- _SV_HEAD_UNION ;
252+ SV_HEAD_UNION_ ;
253253};
254254
255255struct cv {
256256 _SV_HEAD (XPVCV * ); /* pointer to xpvcv body */
257- _SV_HEAD_UNION ;
257+ SV_HEAD_UNION_ ;
258258};
259259
260260struct av {
261261 _SV_HEAD (XPVAV * ); /* pointer to xpvav body */
262- _SV_HEAD_UNION ;
262+ SV_HEAD_UNION_ ;
263263};
264264
265265struct hv {
266266 _SV_HEAD (XPVHV * ); /* pointer to xpvhv body */
267- _SV_HEAD_UNION ;
267+ SV_HEAD_UNION_ ;
268268};
269269
270270struct io {
271271 _SV_HEAD (XPVIO * ); /* pointer to xpvio body */
272- _SV_HEAD_UNION ;
272+ SV_HEAD_UNION_ ;
273273};
274274
275275struct p5rx {
276276 _SV_HEAD (struct regexp * ); /* pointer to regexp body */
277- _SV_HEAD_UNION ;
277+ SV_HEAD_UNION_ ;
278278};
279279
280280struct invlist {
281281 _SV_HEAD (XINVLIST * ); /* pointer to xpvinvlist body */
282- _SV_HEAD_UNION ;
282+ SV_HEAD_UNION_ ;
283283};
284284
285285struct object {
286286 _SV_HEAD (XPVOBJ * ); /* pointer to xobject body */
287- _SV_HEAD_UNION ;
287+ SV_HEAD_UNION_ ;
288288};
289289
290290#undef _SV_HEAD
291- #undef _SV_HEAD_UNION /* ensure no pollution */
291+ #undef SV_HEAD_UNION_ /* ensure no pollution */
292292
293293/*
294294=for apidoc_section $SV
You can’t perform that action at this time.
0 commit comments