We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93cf6a5 commit 9834098Copy full SHA for 9834098
sv.h
@@ -211,17 +211,17 @@ typedef struct hek HEK;
211
U32 sv_flags /* what we are */
212
213
#if NVSIZE <= IVSIZE
214
-# define _NV_BODYLESS_UNION NV svu_nv;
+# define NV_BODYLESS_UNION_ NV svu_nv;
215
#else
216
-# define _NV_BODYLESS_UNION
+# define NV_BODYLESS_UNION_
217
#endif
218
219
#define _SV_HEAD_UNION \
220
union { \
221
char* svu_pv; /* pointer to malloced string */ \
222
IV svu_iv; \
223
UV svu_uv; \
224
- _NV_BODYLESS_UNION \
+ NV_BODYLESS_UNION_ \
225
SV* svu_rv; /* pointer to another SV */ \
226
SV** svu_array; \
227
HE** svu_hash; \
0 commit comments