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

Correctness improvements for includes in juce_StandardHeader.h

This commit is contained in:
Julian Waters 2024-08-06 14:49:19 +08:00 committed by GitHub
parent 22ee31f3ff
commit 9594156a64
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>
@ -97,7 +98,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
@ -110,7 +111,6 @@ JUCE_BEGIN_IGNORE_WARNINGS_MSVC (4514 4245 4100)
#endif
#if JUCE_LINUX || JUCE_BSD
#include <cstring>
#include <signal.h>
#if __INTEL_COMPILER