Skip to content

Commit 9834098

Browse files
committed
sv.h Convert _NV_BODYLESS_UNION to legal name
1 parent 93cf6a5 commit 9834098

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sv.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,17 +211,17 @@ typedef struct hek HEK;
211211
U32 sv_flags /* what we are */
212212

213213
#if NVSIZE <= IVSIZE
214-
# define _NV_BODYLESS_UNION NV svu_nv;
214+
# define NV_BODYLESS_UNION_ NV svu_nv;
215215
#else
216-
# define _NV_BODYLESS_UNION
216+
# define NV_BODYLESS_UNION_
217217
#endif
218218

219219
#define _SV_HEAD_UNION \
220220
union { \
221221
char* svu_pv; /* pointer to malloced string */ \
222222
IV svu_iv; \
223223
UV svu_uv; \
224-
_NV_BODYLESS_UNION \
224+
NV_BODYLESS_UNION_ \
225225
SV* svu_rv; /* pointer to another SV */ \
226226
SV** svu_array; \
227227
HE** svu_hash; \

0 commit comments

Comments
 (0)