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 @@ Single instruction, multiple data
Copyright 2018 Ahmet Inan <inan@aicodix.de>
*/
#ifndef SIMD_HH
#define SIMD_HH
#pragma once
#include <cstdint>
#include <cstdlib>
@ -1402,4 +1401,3 @@ static inline SIMD<int64_t, WIDTH> vsign(SIMD<int64_t, WIDTH> a, SIMD<int64_t, W
#endif
#endif
#endif