Replaced deprecated atomic64_xxx types with int64_t, uint64_t
[libcds.git] / cds / algo / bitop.h
index 4f9803b4c1f221bff9424c7a5bac95abc31976b7..a8ebb340ea418766a9c5145f5843a385ed3f8510 100644 (file)
@@ -44,7 +44,7 @@ namespace cds {
 
             // 64-bit bit ops
             template <> struct BitOps<8> {
-                typedef atomic64u_unaligned        TUInt;
+                typedef uint64_t TUInt;
 
                 static int      MSB( TUInt x )        { return bitop::platform::msb64( x );     }
                 static int      LSB( TUInt x )        { return bitop::platform::lsb64( x );     }