1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

SystemStats: Avoid "pragma intrinsic" when building with the Intel compiler

This commit is contained in:
reuk 2021-03-16 16:37:24 +00:00
parent ba475a8008
commit 3fe0b07a82
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11

View file

@ -23,7 +23,7 @@
namespace juce
{
#if JUCE_MSVC
#if JUCE_MSVC && ! defined (__INTEL_COMPILER)
#pragma intrinsic (__cpuid)
#pragma intrinsic (__rdtsc)
#endif