From 853105b9d2cc813cab4c9f698960224394ec7899 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-Philippe=20Bruy=C3=A8re?= Date: Fri, 25 Mar 2022 22:00:31 +0100 Subject: [PATCH] reorder svg-viewer.c includes to prevent shadowed definition of c extensions --- tests/vkvg-svg/svg-viewer.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/vkvg-svg/svg-viewer.c b/tests/vkvg-svg/svg-viewer.c index 77a2b2c..c39617e 100644 --- a/tests/vkvg-svg/svg-viewer.c +++ b/tests/vkvg-svg/svg-viewer.c @@ -1,3 +1,7 @@ +#include "vkvg.h" +#include "vkvg-svg.h" +#include "vkengine.h" + #include #include #include @@ -9,10 +13,6 @@ #include #include -#include "vkvg.h" -#include "vkvg-svg.h" -#include "vkengine.h" - static VkvgDevice dev; static VkvgSurface svgSurf = NULL; static double scale = 1; -- 2.47.3