diff options
Diffstat (limited to 'src/include/port/atomics/generic-msvc.h')
-rw-r--r-- | src/include/port/atomics/generic-msvc.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/include/port/atomics/generic-msvc.h b/src/include/port/atomics/generic-msvc.h index d259d6f51d0..436baefb5da 100644 --- a/src/include/port/atomics/generic-msvc.h +++ b/src/include/port/atomics/generic-msvc.h @@ -46,12 +46,6 @@ typedef struct __declspec(align(8)) pg_atomic_uint64 volatile uint64 value; } pg_atomic_uint64; -#endif /* defined(HAVE_ATOMICS) */ - - -#if defined(PG_USE_INLINE) || defined(ATOMICS_INCLUDE_DEFINITIONS) - -#if defined(HAVE_ATOMICS) #define PG_HAVE_ATOMIC_COMPARE_EXCHANGE_U32 static inline bool @@ -107,5 +101,3 @@ pg_atomic_fetch_add_u64_impl(volatile pg_atomic_uint64 *ptr, int64 add_) #endif /* _WIN64 */ #endif /* HAVE_ATOMICS */ - -#endif /* defined(PG_USE_INLINE) || defined(ATOMICS_INCLUDE_DEFINITIONS) */ |