projects
/
dbsrgits/Data-Query.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
8e97944
)
disable precedence warnings for &
Matt S Trout [Fri, 15 Nov 2013 10:05:06 +0000 (10:05 +0000)]
lib/Data/Query/ExprDeclare.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/Data/Query/ExprDeclare.pm
b/lib/Data/Query/ExprDeclare.pm
index
f0285fb
..
d3689a1
100644
(file)
--- a/
lib/Data/Query/ExprDeclare.pm
+++ b/
lib/Data/Query/ExprDeclare.pm
@@
-5,8
+5,12
@@
use Data::Query::ExprBuilder::Identifier;
use Data::Query::ExprHelpers;
use Data::Query::Constants;
use Safe::Isa;
+use Exporter ();
-use base qw(Exporter);
+sub import {
+ warnings->unimport('precedence');
+ goto &Exporter::import;
+}
our @EXPORT = qw(expr);