diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/usd/008-fix_clang8_compiler_error.patch | |
Diffstat (limited to 'vcpkg/ports/usd/008-fix_clang8_compiler_error.patch')
| -rw-r--r-- | vcpkg/ports/usd/008-fix_clang8_compiler_error.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/vcpkg/ports/usd/008-fix_clang8_compiler_error.patch b/vcpkg/ports/usd/008-fix_clang8_compiler_error.patch new file mode 100644 index 0000000..259ce8e --- /dev/null +++ b/vcpkg/ports/usd/008-fix_clang8_compiler_error.patch @@ -0,0 +1,22 @@ +diff --git a/pxr/usd/pcp/primIndex.h b/pxr/usd/pcp/primIndex.h
+index 6b31c7da4..285d13fa7 100644
+--- a/pxr/usd/pcp/primIndex.h
++++ b/pxr/usd/pcp/primIndex.h
+@@ -69,7 +69,7 @@ public:
+ PcpPrimIndex(const PcpPrimIndex& rhs);
+
+ /// Move-construction
+- PcpPrimIndex(PcpPrimIndex &&rhs) noexcept = default;
++ PcpPrimIndex(PcpPrimIndex &&rhs) = default;
+
+ /// Assignment.
+ PcpPrimIndex &operator=(const PcpPrimIndex &rhs) {
+@@ -78,7 +78,7 @@ public:
+ }
+
+ // Move-assignment.
+- PcpPrimIndex &operator=(PcpPrimIndex &&rhs) noexcept = default;
++ PcpPrimIndex &operator=(PcpPrimIndex &&rhs) = default;
+
+ /// Swap the contents of this prim index with \p index.
+ PCP_API
|