47_OBIS: Fix for warning for 64bit-integers

git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@15943 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
Icinger 2018-01-21 08:18:29 +00:00
parent 096fa30a30
commit 1b37f5965d

View File

@ -12,14 +12,13 @@
package main;
no warnings 'portable'; # Support for 64-bit ints required
#use bigint qw/hex/;
no warnings qw(overflow portable);
use strict;
use warnings;
use Time::HiRes qw(gettimeofday usleep);
use Scalar::Util qw(looks_like_number);
use POSIX qw{strftime};
no warnings 'portable'; # Support for 64-bit ints required
#use Math::BigInt ':constant';
my %OBIS_channels = ( "21" =>"power_L1",
"41" =>"power_L2",