Kaydet (Commit) 877f5549 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Wrap large values in SAL_CONST_INT64

Change-Id: I9a263e2232d63e5794f757cab39b93e13c7d159f
üst ec499154
...@@ -41,9 +41,9 @@ extern long altzone; ...@@ -41,9 +41,9 @@ extern long altzone;
namespace { namespace {
const sal_Int64 secMask = 1000000000; const sal_Int64 secMask = SAL_CONST_INT64(1000000000);
const sal_Int64 minMask = 100000000000; const sal_Int64 minMask = SAL_CONST_INT64(100000000000);
const sal_Int64 hourMask = 10000000000000; const sal_Int64 hourMask = SAL_CONST_INT64(10000000000000);
const sal_Int64 nanoSecInSec = 1000000000; const sal_Int64 nanoSecInSec = 1000000000;
const sal_Int16 secInMin = 60; const sal_Int16 secInMin = 60;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment