diff options
author | Todd Rinaldo <toddr@cpan.org> | 2020-10-05 17:56:04 -0500 |
---|---|---|
committer | Todd Rinaldo <toddr@cpan.org> | 2020-10-05 17:57:45 -0500 |
commit | 2351bb733429b72c5afa621b2c5ea3ce53f2fa9b (patch) | |
tree | a725e5c547538065677faf9e652c47fefed502fd /vxs.inc | |
parent | 165e179185d6d942b610cf7fa2fe9341dbf3f8cf (diff) | |
download | perl-2351bb733429b72c5afa621b2c5ea3ce53f2fa9b.tar.gz |
Correct build time warning for vxs.inc
Fixes #18202
This fix was present previously and was clobbered by a cpan sync of
version.pm It is now reported into that repo via
https://github.com/toddr/version.pm/pull/1
Diffstat (limited to 'vxs.inc')
-rw-r--r-- | vxs.inc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ # define VXS_CLASS "version" # define VXSp(name) XS_##name /* VXSXSDP = XSUB Details Proto */ -# define VXSXSDP(x) x +# define VXSXSDP(x) x, 0 #else # define VXS_CLASS "version::vxs" # define VXSp(name) VXS_##name |