diff --git a/include/SDL_atomic.h b/include/SDL_atomic.h index 7259f7c44..2d19a498a 100644 --- a/include/SDL_atomic.h +++ b/include/SDL_atomic.h @@ -123,9 +123,10 @@ extern DECLSPEC void SDLCALL SDL_AtomicUnlock(SDL_SpinLock *lock); /*@}*//*SDL AtomicLock*/ -/* The compiler barrier prevents the compiler from reordering - reads and writes to globally visible variables across the call. -*/ +/** + * The compiler barrier prevents the compiler from reordering + * reads and writes to globally visible variables across the call. + */ #ifdef _MSC_VER void _ReadWriteBarrier(void); #pragma intrinsic(_ReadWriteBarrier)