Replacing some integral typedefs with standard types
[libcds.git] / tests / unit / alloc / hoard_threadtest.cpp
index df2f807c1cb44af7083258ef08c6a25993f0c26d..26c4f2188435ec97acbb212d46531df935c24c03 100644 (file)
@@ -86,7 +86,7 @@ namespace memory {
                             memset( ((char *)(*pCell)) + nSize * sizeof(value_type) - 16, 0, 16 );
                         }
 
-                        CPPUNIT_ASSERT( (reinterpret_cast<cds::uptr_atomic_t>(*pCell) & (ALLOC::alignment - 1)) == 0 );
+                        CPPUNIT_ASSERT( (reinterpret_cast<uintptr_t>(*pCell) & (ALLOC::alignment - 1)) == 0 );
                     }
                     pCell = m_arr;
                     for ( size_t i = 0; i < s_nBlockCount; ++i, ++pCell ) {