vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c in rbnacl-libsodium-1.0.7 vs vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c in rbnacl-libsodium-1.0.8

- old
+ new

@@ -16,16 +16,16 @@ typedef __m128i xmmi; #if defined(__SIZEOF_INT128__) typedef unsigned __int128 uint128_t; #else -typedef unsigned uint128_t __attribute__((mode(TI))); +typedef unsigned uint128_t __attribute__ ((mode(TI))); #endif #if defined(_MSC_VER) # define POLY1305_NOINLINE __declspec(noinline) #elif defined(__GNUC__) -# define POLY1305_NOINLINE __attribute__((noinline)) +# define POLY1305_NOINLINE __attribute__ ((noinline)) #else # define POLY1305_NOINLINE #endif #define poly1305_block_size 32