Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Annoying warnings...

by schwern (Scribe)
on Jul 16, 2005 at 23:27 UTC ( [id://475517]=note: print w/replies, xml ) Need Help??


in reply to Annoying warnings...

The other annoying warning is "Name ... used only once: possible typo. +..". For this I do this song-and-dance: $DB::single = $DB::single = 1;
There's no warning if the variable already exists, which seems correct to me. This does not warn.
use DB_File; # Just some global in DB_File. $DB_File::db_version = 42;
This does warn.
use DB_File; $DB_File::wibble = 42;
PS The warning happens at compile time so the variable has to exist at compile time. This means:
require DB_File; $DB_File::db_version = 42;
does warn.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://475517]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (2)
As of 2024-04-19 21:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found