diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-08-29 08:56:15 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-08-29 08:56:15 +0000 |
commit | c5a0f51aeadf6b8a7ed259c017c10b71dbc08619 (patch) | |
tree | c47d27d20129ef24f03229df5eda2427947be4fb /pod/perldiag.pod | |
parent | e1341489138a2cd535f7aa4b4d9dde4f07557806 (diff) | |
download | perl-c5a0f51aeadf6b8a7ed259c017c10b71dbc08619.tar.gz |
Implement 64-bit vec().
p4raw-id: //depot/cfgperl@4035
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r-- | pod/perldiag.pod | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 49e654afb5..90439402a8 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -488,6 +488,10 @@ L<perlport> for more on portability concerns. (W) You tried to do a bind on a closed socket. Did you forget to check the return value of your socket() call? See L<perlfunc/bind>. +=item Bit vector size > 32 non-portable + +(W) Using bit vector sizes larger than 32 is non-portable. + =item Bizarre copy of %s in %s (P) Perl detected an attempt to copy an internal value that is not copiable. @@ -1522,7 +1526,7 @@ before the illegal character. =item Illegal number of bits in vec (F) The number of bits in vec() (the third argument) must be a power of -two from 1 to 32. +two from 1 to 32 (or 64, if your platform supports that). =item Illegal switch in PERL5OPT: %s |