From 5fa8aac2aa856c54d7084f9fb76f936e05042008 Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Tue, 23 Aug 2022 22:44:24 +0900 Subject: [PATCH] examples: fix a compilation error on windows. ../src/examples/Performance.cpp:32:8: error: 'uint' does not name a type; did you mean 'u_int'? 32 | static uint cnt = 0; | ^~~~ | u_int @Issues: https://github.com/Samsung/thorvg/issues/1247 --- src/examples/Performance.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/examples/Performance.cpp b/src/examples/Performance.cpp index 6625aad4..ddc5d78a 100644 --- a/src/examples/Performance.cpp +++ b/src/examples/Performance.cpp @@ -29,7 +29,7 @@ static tvg::Picture* pPicture = nullptr; static double updateTime = 0; static double accumulateTime = 0; -static uint cnt = 0; +static uint32_t cnt = 0; void tvgDrawCmds(tvg::Canvas* canvas) {