From: wangxuedong Date: Thu, 9 Dec 2021 08:51:34 +0000 (+0800) Subject: replace unsigned int with uint32_t in Int() X-Git-Tag: submit/tizen_6.5/20220624.031255~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ad489494b0eea5c20c4e1267cd639574df53ea1a;p=platform%2Fcore%2Fuifw%2Flottie-player.git replace unsigned int with uint32_t in Int() Signed-off-by: wangxuedong Change-Id: I4390c12fcf3aefccfe20290436b0dad96877008c Signed-off-by: jykeon --- diff --git a/src/vector/vglobal.h b/src/vector/vglobal.h index 8537b66..0aad7e8 100644 --- a/src/vector/vglobal.h +++ b/src/vector/vglobal.h @@ -139,7 +139,7 @@ public: using Int = typename std::conditional< std::is_unsigned::type>::value, - unsigned int, signed int>::type; + uint32_t, signed int>::type; using enum_type = Enum; // compiler-generated copy/move ctor/assignment operators are fine!