Removed redundant spaces
[libcds.git] / cds / compiler / vc / amd64 / cxx11_atomic.h
index 83aac1d38937328372a553c912c10ab35515181d..27a6f669969bb496adc730110fd4fb0a6dbf1bca 100644 (file)
@@ -206,7 +206,7 @@ namespace cds { namespace cxx11_atomic {
             return expected == prev;
 #       else
             // VC 2008
-            unsigned int *  pnDest = (unsigned int *)( ((unsigned __int64) pDest) & ~(unsigned __int64(3)) );
+            unsigned int *  pnDest = (unsigned int *)( ((unsigned __int64) pDest) & ~(unsigned __int64(3)));
             unsigned int    nOffset = ((unsigned __int64) pDest) & 3;
             unsigned int    nExpected;
             unsigned int    nDesired;
@@ -545,7 +545,7 @@ namespace cds { namespace cxx11_atomic {
         static inline T * exchange_ptr( T * volatile * pDest, T * v, memory_order /*order*/ ) CDS_NOEXCEPT
         {
             static_assert( sizeof(T *) == sizeof(void *), "Illegal size of operand" );
-            return (T *) _InterlockedExchangePointer( (void * volatile *) pDest, reinterpret_cast<void *>(v) );
+            return (T *) _InterlockedExchangePointer( (void * volatile *) pDest, reinterpret_cast<void *>(v));
         }
 
         template <typename T>