1
0
mirror of https://github.com/google/cpu_features.git synced 2025-07-01 13:21:13 +02:00

remove internal FillX86BrandString usage (#258)

This commit is contained in:
Andrei Kurushin
2022-07-25 18:39:50 +03:00
committed by GitHub
parent c7c7751682
commit 677d6419b2
3 changed files with 6 additions and 60 deletions

View File

@ -371,6 +371,8 @@
// Communicates to the compiler that the function is now deprecated
#if defined(CPU_FEATURES_COMPILER_CLANG) || defined(CPU_FEATURES_COMPILER_GCC)
#define CPU_FEATURES_DEPRECATED(message) __attribute__((deprecated(message)))
#elif defined(CPU_FEATURES_COMPILER_MSC)
#define CPU_FEATURES_DEPRECATED(message) __declspec(deprecated(message))
#else
#define CPU_FEATURES_DEPRECATED(message)
#endif