summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteffen Mueller <smueller@cpan.org>2011-02-10 17:12:23 +0100
committerSteffen Mueller <smueller@cpan.org>2011-07-12 20:54:48 +0200
commited2147bc003499bf7655d80337925f3668177d22 (patch)
tree180d768e6c122a952d2159ab17bde4b8ed573be7
parent120f2c875ffb668661f9af38d6fe52ec435448a3 (diff)
downloadperl-ed2147bc003499bf7655d80337925f3668177d22.tar.gz
Teach EU::Typemaps about the _ prototype
I am in a hurry and this makes things correct, but really, this should maybe use EU::ParseXS' regular expression.
-rw-r--r--dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps.pm b/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps.pm
index 0499a9a055..cfda24b727 100644
--- a/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps.pm
+++ b/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps.pm
@@ -5,7 +5,7 @@ use warnings;
our $VERSION = '1.00';
use Carp qw(croak);
-our $Proto_Regexp = "[" . quotemeta('\$%&*@;[]') . "]";
+our $Proto_Regexp = "[" . quotemeta('\$%&*@;[]_') . "]"; # TODO: Use ExtUtils::ParseXS' constant instead
require ExtUtils::Typemaps::InputMap;
require ExtUtils::Typemaps::OutputMap;