Check-in Number:
|
4811 | |
Date: |
2004-Nov-03 09:10:00 (local)
2004-Nov-03 08:10:00 (UTC) |
User: | rse |
Branch: | |
Comment: |
add default empty EXPORT array |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/string-divert/ChangeLog 1.5 -> 1.6
--- ChangeLog 2004/11/03 08:06:45 1.5
+++ ChangeLog 2004/11/03 08:10:00 1.6
@@ -4,6 +4,7 @@
0.94 (03-Nov-2004)
o use empty EXPORT_OK because we have an OO style API only
+ o add default empty EXPORT array
0.93 (22-Sep-2003)
o fix obj->folder(format, pattern) implementation
0.92 (29-Apr-2003)
|
|
ossp-pkg/string-divert/Divert.pm 1.7 -> 1.8
--- Divert.pm 2004/11/03 08:06:45 1.7
+++ Divert.pm 2004/11/03 08:10:00 1.8
@@ -39,6 +39,7 @@
our $VERSION = '0.94';
our @ISA = qw(Exporter);
+our @EXPORT = qw();
our @EXPORT_OK = qw();
# object construction
@@ -436,6 +437,7 @@
package String::Divert::__OVERLOAD__;
our @ISA = qw(Exporter String::Divert);
+our @EXPORT = qw();
our @EXPORT_OK = qw();
# define operator overloading
|
|