mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-14 12:04:29 +00:00
Lottie loader: fix compilation on windows
strlen() was used in tvgLottieModel.h without the inclusion of cstring. This patch fixes this
This commit is contained in:
parent
a92633e1d8
commit
c1ea9d4585
1 changed files with 3 additions and 1 deletions
|
@ -23,6 +23,8 @@
|
|||
#ifndef _TVG_LOTTIE_MODEL_H_
|
||||
#define _TVG_LOTTIE_MODEL_H_
|
||||
|
||||
#include <cstring>
|
||||
|
||||
#include "tvgCommon.h"
|
||||
#include "tvgRender.h"
|
||||
#include "tvgLottieProperty.h"
|
||||
|
@ -621,4 +623,4 @@ struct LottieComposition
|
|||
bool initiated = false;
|
||||
};
|
||||
|
||||
#endif //_TVG_LOTTIE_MODEL_H_
|
||||
#endif //_TVG_LOTTIE_MODEL_H_
|
||||
|
|
Loading…
Add table
Reference in a new issue