From 0a442ce4b1f0b01642e93e66fced0c6f3fa139b4 Mon Sep 17 00:00:00 2001 From: Zoffix Znet Date: Sun, 9 Apr 2017 16:31:26 +0000 Subject: [PATCH] [io grant] Remove type constraint in IO::Spec::Cygwin.canonpath To align its interface with all the other ::Spe::*.canonpaths --- src/core/IO/Spec/Cygwin.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/IO/Spec/Cygwin.pm b/src/core/IO/Spec/Cygwin.pm index ea63a012747..0f017e334e7 100644 --- a/src/core/IO/Spec/Cygwin.pm +++ b/src/core/IO/Spec/Cygwin.pm @@ -1,6 +1,6 @@ my class IO::Spec::Cygwin is IO::Spec::Unix { - method canonpath (Cool:D $patharg, :$parent) { + method canonpath ($patharg, :$parent) { my $path = $patharg.Str; $path.=subst(:g, '\\', '/');