Browse Source

Remove default symbol visibility for JUCE shared code

tags/2021-05-28
hogliux Timur Doumler 9 years ago
parent
commit
f6efbedee7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_core/system/juce_StandardHeader.h

+ 1
- 1
modules/juce_core/system/juce_StandardHeader.h View File

@@ -130,7 +130,7 @@
#ifdef __INTEL_COMPILER
#pragma warning (disable: 1125) // (virtual override warning)
#endif
#elif defined (JUCE_DLL) || defined (JUCE_DLL_BUILD) || defined (JUCE_SHARED_CODE)
#elif defined (JUCE_DLL) || defined (JUCE_DLL_BUILD)
#define JUCE_API __attribute__ ((visibility("default")))
#endif


Loading…
Cancel
Save