summaryrefslogtreecommitdiffstats
path: root/thirdparty/thorvg/patches
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-03-09 23:58:59 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-03-09 23:58:59 +0100
commit6fa77e0f1442328a969c9ad0651047fae34f72a3 (patch)
treeadbcdca713d10d162423970a36a3ea6e57298789 /thirdparty/thorvg/patches
parent0ace0a129284ffc6646b199699c1607a316fcec0 (diff)
downloadredot-engine-6fa77e0f1442328a969c9ad0651047fae34f72a3.tar.gz
thorvg: Update to 0.12.7
Diffstat (limited to 'thirdparty/thorvg/patches')
-rw-r--r--thirdparty/thorvg/patches/Fix_compiler_shadowing_warning.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/thirdparty/thorvg/patches/Fix_compiler_shadowing_warning.patch b/thirdparty/thorvg/patches/Fix_compiler_shadowing_warning.patch
deleted file mode 100644
index e0647628d3..0000000000
--- a/thirdparty/thorvg/patches/Fix_compiler_shadowing_warning.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff --git a/thirdparty/thorvg/src/common/tvgLock.h b/thirdparty/thorvg/src/common/tvgLock.h
-index e6d993a41e..5dd3d5a624 100644
---- a/thirdparty/thorvg/src/common/tvgLock.h
-+++ b/thirdparty/thorvg/src/common/tvgLock.h
-@@ -38,10 +38,10 @@ namespace tvg {
- {
- Key* key = nullptr;
-
-- ScopedLock(Key& key)
-+ ScopedLock(Key& k)
- {
-- key.mtx.lock();
-- this->key = &key;
-+ k.mtx.lock();
-+ key = &k;
- }
-
- ~ScopedLock()
-@@ -68,3 +68,4 @@ namespace tvg {
- #endif //THORVG_THREAD_SUPPORT
-
- #endif //_TVG_LOCK_H_
-+