Skip to content

Commit

Permalink
Fix Ubuntu Action (#12)
Browse files Browse the repository at this point in the history
fix include header files
  • Loading branch information
YGXXD authored Nov 26, 2024
2 parents 7aaed07 + 3d37040 commit 7649856
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
3 changes: 3 additions & 0 deletions ktm/simd/arch_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
#define KTM_SIMD_WASM 0x00000100
#define KTM_SIMD_ENABLE(flags) (KTM_SIMD_SUPPORT & (flags))

#include <cstddef>
#include <cstdint>

#if defined(KTM_COMPILER_MSVC)
#if defined(__AVX__)
#ifndef __SSE4_2__
Expand Down
1 change: 0 additions & 1 deletion ktm/simd/arm_intrin.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
#ifndef _KTM_ARM_INTRIN_H_
#define _KTM_ARM_INTRIN_H_

#include <cstddef>
#include "arch_def.h"

namespace intrin
Expand Down
1 change: 0 additions & 1 deletion ktm/simd/intel_intrin.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
#ifndef _KTM_INTEL_INTRIN_H_
#define _KTM_INTEL_INTRIN_H_

#include <cstddef>
#include "arch_def.h"

namespace intrin
Expand Down
1 change: 0 additions & 1 deletion ktm/simd/wasm_intrin.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
#ifndef _KTM_WASM_INTRIN_H_
#define _KTM_WASM_INTRIN_H_

#include <cstddef>
#include "arch_def.h"

namespace intrin
Expand Down

0 comments on commit 7649856

Please sign in to comment.