Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Parser.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
package XML::Parser;

use strict;
use warnings;

our ( $VERSION, $LWP_load_failed );

Expand Down
1 change: 1 addition & 0 deletions Parser/Style/Debug.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

package XML::Parser::Style::Debug;
use strict;
use warnings;

sub Start {
my $expat = shift;
Expand Down
1 change: 1 addition & 0 deletions Parser/Style/Objects.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

package XML::Parser::Style::Objects;
use strict;
use warnings;

sub Init {
my $expat = shift;
Expand Down
1 change: 1 addition & 0 deletions Parser/Style/Stream.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

package XML::Parser::Style::Stream;
use strict;
use warnings;

# This style invented by Tim Bray <tbray@textuality.com>

Expand Down
1 change: 1 addition & 0 deletions Parser/Style/Subs.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

package XML::Parser::Style::Subs;
use strict;
use warnings;

sub Start {
no strict 'refs';
Expand Down
1 change: 1 addition & 0 deletions Parser/Style/Tree.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

package XML::Parser::Style::Tree;
use strict;
use warnings;

sub Init {
my $expat = shift;
Expand Down
Loading