From ed2147bc003499bf7655d80337925f3668177d22 Mon Sep 17 00:00:00 2001 From: Steffen Mueller Date: Thu, 10 Feb 2011 17:12:23 +0100 Subject: [PATCH] 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. --- dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps.pm b/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps.pm index 0499a9a..cfda24b 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; -- 2.7.4