Replacing some integral typedefs with standard types
[libcds.git] / cds / algo / bitop.h
index 2ab7a5ef5a5955aecc9c1738538bfa92ea098b76..de9ba52f639e04f6cc113fb2bf36fc2d76371eab 100644 (file)
@@ -27,7 +27,7 @@ namespace cds {
 
             // 32-bit bit ops
             template <> struct BitOps<4> {
-                typedef atomic32u_t        TUInt;
+                typedef uint32_t        TUInt;
 
                 static int      MSB( TUInt x )      { return bitop::platform::msb32( x );   }
                 static int      LSB( TUInt x )      { return bitop::platform::lsb32( x );   }