From 0517dd74419c0d7cd4553c5299719e62e3b9a30b Mon Sep 17 00:00:00 2001 From: Sergii Liebodkin Date: Mon, 4 Dec 2023 09:57:23 +0200 Subject: [PATCH] [Issues 1811: Compiller shadowing warning](https://github.com/thorvg/thorvg/issues/1811) Godot CI compilation issue fixed --- src/renderer/tvgPaint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/tvgPaint.h b/src/renderer/tvgPaint.h index ca1818b7..61c4acf8 100644 --- a/src/renderer/tvgPaint.h +++ b/src/renderer/tvgPaint.h @@ -57,7 +57,7 @@ namespace tvg uint8_t opacity = 255; uint8_t refCnt = 0; - Impl(Paint* paint) : paint(paint) + Impl(Paint* pnt) : paint(pnt) { }