File: fix-typo-warning

package info (click to toggle)
libpod-pom-perl 2.01-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 668 kB
  • ctags: 180
  • sloc: perl: 2,755; makefile: 7
file content (16 lines) | stat: -rw-r--r-- 483 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Fix typo warning
 Declare an empty @ATTRIBS array to avoid warnings 
 that appears when this module is used. Weirdly 
 enough, this warning does not show up in tests 
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=776547
Author: dod
--- a/lib/Pod/POM/Node/Pod.pm
+++ b/lib/Pod/POM/Node/Pod.pm
@@ -30,6 +30,7 @@
 
 use parent qw( Pod::POM::Node );
 
+our @ATTRIBS = ();
 our @ACCEPT = qw( head1 head2 head3 head4 over begin for text verbatim code );
 
 1;