From: Matt S Trout Date: Mon, 6 Apr 2020 21:29:41 +0000 (+0000) Subject: move DEFAULT_COMMENT global away from $VERSION X-Git-Tag: v1.61~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=aa48c63f30cfe589c328ce84b0f1df7bcbb93eac;p=dbsrgits%2FSQL-Translator.git move DEFAULT_COMMENT global away from $VERSION --- diff --git a/lib/SQL/Translator/Utils.pm b/lib/SQL/Translator/Utils.pm index 3f256aa..d86d988 100644 --- a/lib/SQL/Translator/Utils.pm +++ b/lib/SQL/Translator/Utils.pm @@ -9,7 +9,6 @@ use Try::Tiny; use Carp qw(carp croak); our $VERSION = '1.60'; -our $DEFAULT_COMMENT = '--'; use base qw(Exporter); our @EXPORT_OK = qw( @@ -21,6 +20,8 @@ our @EXPORT_OK = qw( ); use constant COLLISION_TAG_LENGTH => 8; +our $DEFAULT_COMMENT = '--'; + sub debug { my ($pkg, $file, $line, $sub) = caller(0); {