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/20220408.011942~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=39f2d1922b466c43cbb65071b7ab5cf93a35bb3a;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!