mirror of
https://github.com/anrieff/libcpuid
synced 2025-07-02 14:04:15 +00:00
[MSVC] Replace #warning with compatible directives for MSVC
This commit is contained in:
parent
eaa37ce5b6
commit
a38d564428
1 changed files with 6 additions and 2 deletions
|
@ -1459,8 +1459,12 @@ int cpuid_get_raw_data_core(struct cpu_raw_data_t* data, logical_cpu_t logical_c
|
||||||
# endif /* PLATFORM_AARCH64 */
|
# endif /* PLATFORM_AARCH64 */
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
# warning This CPU architecture is not supported by libcpuid
|
#if defined(_MSC_VER)
|
||||||
UNUSED(data);
|
#pragma message("Warning: This CPU architecture is not supported by libcpuid")
|
||||||
|
#else
|
||||||
|
#warning This CPU architecture is not supported by libcpuid
|
||||||
|
#endif
|
||||||
|
UNUSED(data);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (affinity_saved)
|
if (affinity_saved)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue