diff options
Diffstat (limited to 'ASNMP/tests/Counter64_Test.cpp')
-rw-r--r-- | ASNMP/tests/Counter64_Test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ASNMP/tests/Counter64_Test.cpp b/ASNMP/tests/Counter64_Test.cpp index 8bdc90b9c8f..d38a7524100 100644 --- a/ASNMP/tests/Counter64_Test.cpp +++ b/ASNMP/tests/Counter64_Test.cpp @@ -136,11 +136,11 @@ static void TestCounter64() c4 = c4; ACE_ASSERT(c5 == c4); c5 = ll; - ACE_ASSERT(c5 == ll); + ACE_ASSERT(c5 == static_cast<ACE_UINT64> (ll)); // try simple arithmetic (needs more test cases) c5 = mll; c5 = c5 + (ULLONG) 10; - ACE_ASSERT(c5 == (mll + 10)); + ACE_ASSERT(c5 == static_cast<ACE_UINT64> (mll + 10)); #endif /*ACE_WIN32 */ } |