mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-15 04:24:28 +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
4613d98d98
commit
a361924887
1 changed files with 3 additions and 1 deletions
|
@ -23,6 +23,8 @@
|
||||||
#ifndef _TVG_LOTTIE_MODEL_H_
|
#ifndef _TVG_LOTTIE_MODEL_H_
|
||||||
#define _TVG_LOTTIE_MODEL_H_
|
#define _TVG_LOTTIE_MODEL_H_
|
||||||
|
|
||||||
|
#include <cstring>
|
||||||
|
|
||||||
#include "tvgCommon.h"
|
#include "tvgCommon.h"
|
||||||
#include "tvgRender.h"
|
#include "tvgRender.h"
|
||||||
#include "tvgLottieProperty.h"
|
#include "tvgLottieProperty.h"
|
||||||
|
@ -623,4 +625,4 @@ struct LottieComposition
|
||||||
bool initiated = false;
|
bool initiated = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //_TVG_LOTTIE_MODEL_H_
|
#endif //_TVG_LOTTIE_MODEL_H_
|
||||||
|
|
Loading…
Add table
Reference in a new issue