From cd368a5ba7affdac7e3e5d387a8b24c649cd685e Mon Sep 17 00:00:00 2001 From: Joe Rowell Date: Sat, 13 Jul 2024 22:38:02 +0100 Subject: [PATCH] Move cpuid.h -> cpu_id.h Signed-off-by: Joe Rowell --- cpuid.h => cpu_id.h | 0 python.cc | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename cpuid.h => cpu_id.h (100%) diff --git a/cpuid.h b/cpu_id.h similarity index 100% rename from cpuid.h rename to cpu_id.h diff --git a/python.cc b/python.cc index 1702a6d..239dd39 100644 --- a/python.cc +++ b/python.cc @@ -3,7 +3,7 @@ #include #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include -#include "cpuid.h" +#include "cpu_id.h" #include "lap.h" static SIMDFlags simd_flags = SIMDFlags();