Revision: 21594
Author: gervandiepen
Date: Mon Mar 30 09:02:07 2015 UTC
Log: Large integer number required ULL on 32-bit systems
https://code.google.com/p/casacore/source/detail?r=21594
Modified:
/branches/nov14/scimath/Mathematics/ZScoreCalculator.cc
=======================================
--- /branches/nov14/scimath/Mathematics/ZScoreCalculator.cc Mon Feb 16
07:05:15 2015 UTC
+++ /branches/nov14/scimath/Mathematics/ZScoreCalculator.cc Mon Mar 30
09:02:07 2015 UTC
@@ -48,8 +48,8 @@
_nptsToMaxZScore[872138] = 5;
_nptsToMaxZScore[13165126] = 5.5;
_nptsToMaxZScore[253398672] = 6;
- _nptsToMaxZScore
[6225098696] = 6.5;
- _nptsToMaxZScore[195341107722] = 7;
+ _nptsToMaxZScore[6225098696ULL] = 6.5;
+ _nptsToMaxZScore[195341107722ULL] = 7;
}
if (_nptsToMaxZScore.find(npts) != _nptsToMaxZScore.end()) {
return _nptsToMaxZScore[npts];