diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-01-09 10:11:10 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-01-09 10:11:10 +0000 |
commit | 2e8342de65fb9cb7fd716c30bbddc9c0f4311ba0 (patch) | |
tree | e4c8c1fc7cc0280876e070e9a929b916d5d90e51 /pod/perldiag.pod | |
parent | 9210de830a7fbd3725bfbe339a3123439f97aa5d (diff) | |
download | perl-2e8342de65fb9cb7fd716c30bbddc9c0f4311ba0.tar.gz |
Remove the warning "v-string in require/use non portable"
p4raw-id: //depot/perl@32910
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r-- | pod/perldiag.pod | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 1dd79a3af0..29d3cd6e02 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -4935,18 +4935,6 @@ the version number. (W misc) The version string contains invalid characters at the end, which are being ignored. -=item v-string in use/require is non-portable - -(W portable) The use of v-strings is non-portable to older, pre-5.6, Perls. -If you want your scripts to be backward portable, use the floating -point version number: for example, instead of C<use 5.6.1> say -C<use 5.006_001>. This of course won't make older Perls suddenly start -understanding newer features, but at least they will show a sensible -error message indicating the required minimum version. - -This warning is suppressed if the C<use 5.x.y> is preceded by a -C<use 5.006> (see C<use VERSION> in L<perlfunc/use>). - =item Warning: something's wrong (W) You passed warn() an empty string (the equivalent of C<warn "">) or |