1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00
This commit is contained in:
Julian Waters 2025-11-15 11:37:49 -05:00 committed by GitHub
commit 0c6e8689ec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -65,6 +65,7 @@
#include <cmath>
#include <condition_variable>
#include <cstddef>
#include <cstring>
#include <functional>
#include <future>
#include <iomanip>
@ -98,7 +99,7 @@
// Now we'll include some common OS headers..
JUCE_BEGIN_IGNORE_WARNINGS_MSVC (4514 4245 4100)
#if JUCE_MSVC
#if JUCE_WINDOWS
#include <intrin.h>
#endif
@ -111,7 +112,6 @@ JUCE_BEGIN_IGNORE_WARNINGS_MSVC (4514 4245 4100)
#endif
#if JUCE_LINUX || JUCE_BSD
#include <cstring>
#include <signal.h>
#if __INTEL_COMPILER