Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions libcpuid/cpuid_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1459,8 +1459,12 @@ int cpuid_get_raw_data_core(struct cpu_raw_data_t* data, logical_cpu_t logical_c
# endif /* PLATFORM_AARCH64 */
}
#else
# warning This CPU architecture is not supported by libcpuid
UNUSED(data);
#if defined(_MSC_VER)
#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

if (affinity_saved)
Expand Down