time to embrace #pragma once

This commit is contained in:
Ahmet Inan 2020-08-05 10:43:49 +02:00
commit 2944a44b28
17 changed files with 17 additions and 55 deletions

View file

@ -4,8 +4,7 @@ Intel SSE4.1 acceleration
Copyright 2018 Ahmet Inan <inan@aicodix.de>
*/
#ifndef SSE4_1_HH
#define SSE4_1_HH
#pragma once
#include <smmintrin.h>
@ -1128,4 +1127,3 @@ inline SIMD<int32_t, 4> vclamp(SIMD<int32_t, 4> x, int32_t a, int32_t b)
return tmp;
}
#endif