in reply to Re^2: override prototype
in thread override prototype
I use a prototype because nimLog uses one.
And I'm asking why it has one.
I use nimLog because modules I use from the supplier use nimLog
I'm asking about the module where you replace nimLog with your own function, not some other module that wasn't even mentioned. Compare
# What you do use Nimbus::API qw( nimLog ); { no warnings ...; sub nimLog { ... Nimbus::API::nimLog( ... ); ... } }
vs
# Sanity restored use Nimbus::API qw( ); sub nimLog { ... Nimbus::API::nimLog( ... ); ... }
My question stands.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: override prototype
by Random_Walk (Prior) on Jan 26, 2010 at 08:45 UTC | |
by ikegami (Patriarch) on Jan 26, 2010 at 16:10 UTC |