1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Remove default symbol visibility for JUCE shared code

This commit is contained in:
hogliux 2016-04-19 11:29:07 +01:00 committed by Timur Doumler
parent 37073c3ee0
commit f6efbedee7

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