1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-10 08:33:36 +02:00

[WIN32] This inline ASM is supported only by MSVC. (#563)

This commit is contained in:
Carlo Bramini
2020-06-07 19:49:33 +02:00
committed by GitHub
parent 3b71d1fc1e
commit 339549d23d

View File

@@ -42,7 +42,7 @@
** the config.h file.
*/
#if (defined (WIN32) || defined (_WIN32)) && defined(_M_IX86)
#if (defined (WIN32) || defined (_WIN32)) && defined(_MSC_VER) && defined(_M_IX86)
// Including math.h allows us to use the inline assembler versions without
// producing errors in newer Visual Studio versions.