mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Suppressed MSVC compiler warnings C4251 caused by rlottie DLL interface exports.
This commit is contained in:
parent
9480f125bb
commit
d96828f454
|
@ -6,6 +6,11 @@
|
|||
// Component to play Lottie animations using the rlottie library.
|
||||
//
|
||||
|
||||
#if defined(_MSC_VER) // MSVC compiler.
|
||||
// Disable rlottie DLL interface warnings.
|
||||
#pragma warning(disable : 4251)
|
||||
#endif
|
||||
|
||||
#ifndef ES_CORE_COMPONENTS_LOTTIE_ANIM_COMPONENT_H
|
||||
#define ES_CORE_COMPONENTS_LOTTIE_ANIM_COMPONENT_H
|
||||
|
||||
|
|
Loading…
Reference in a new issue