Replacing some integral typedefs with standard types
[libcds.git] / cds / compiler / gcc / ia64 / bitop.h
index 64e21e1cf1a71e4c9cad4e42784be32287a36121..35608c3a57a5f812aecc50174664e4fd3fb06176 100644 (file)
@@ -9,7 +9,7 @@ namespace cds {
 
         // MSB - return index (1..32) of most significant bit in x. If x == 0 return 0
 #        define cds_bitop_msb32_DEFINED
-        static inline int msb32( atomic32u_t nArg )
+        static inline int msb32( uint32_t nArg )
         {
             if ( !nArg )
                 return 0;
@@ -30,7 +30,7 @@ namespace cds {
         // MSB - return index (0..31) of most significant bit in nArg.
         // !!! nArg != 0
 #        define cds_bitop_msb32nz_DEFINED
-        static inline int msb32nz( atomic32u_t nArg )
+        static inline int msb32nz( uint32_t nArg )
         {
             assert( nArg != 0 );
             long double d = nArg;