diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-09 23:58:59 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-09 23:58:59 +0100 |
commit | 6fa77e0f1442328a969c9ad0651047fae34f72a3 (patch) | |
tree | adbcdca713d10d162423970a36a3ea6e57298789 /thirdparty/thorvg/patches | |
parent | 0ace0a129284ffc6646b199699c1607a316fcec0 (diff) | |
download | redot-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.patch | 23 |
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_ -+ |