Skip to content

Commit

Permalink
Correctness improvements for includes in juce_StandardHeader.h
Browse files Browse the repository at this point in the history
  • Loading branch information
TheShermanTanker authored Aug 6, 2024
1 parent 22ee31f commit 9594156
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/juce_core/system/juce_StandardHeader.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
#include <cmath>
#include <condition_variable>
#include <cstddef>
#include <cstring>
#include <functional>
#include <future>
#include <iomanip>
Expand Down Expand Up @@ -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

Expand All @@ -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
Expand Down

0 comments on commit 9594156

Please sign in to comment.