aboutsummaryrefslogtreecommitdiff
path: root/ports/physx/fix_discarded_qualifiers.patch
diff options
context:
space:
mode:
authorAdam Johnson <AdamJohnso@gmail.com>2021-04-28 18:52:34 -0400
committerGitHub <noreply@github.com>2021-04-28 15:52:34 -0700
commit59ea102312180ae2972e0bb47cef2cfce407b407 (patch)
treefd9bf1f8f8ddb5104e250e5fa9d603c50dfb686d /ports/physx/fix_discarded_qualifiers.patch
parentb9a6b3985ff9e84a28e4280b673298fedf8f2c17 (diff)
downloadvcpkg-59ea102312180ae2972e0bb47cef2cfce407b407.tar.gz
vcpkg-59ea102312180ae2972e0bb47cef2cfce407b407.zip
[physx] Update to 4.1.2 (#17453)
* [physx] Update to 4.1.2 * [physx] Update to vcpkg-cmake * [physx] x-add-version
Diffstat (limited to 'ports/physx/fix_discarded_qualifiers.patch')
-rw-r--r--ports/physx/fix_discarded_qualifiers.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/ports/physx/fix_discarded_qualifiers.patch b/ports/physx/fix_discarded_qualifiers.patch
deleted file mode 100644
index b007e5635..000000000
--- a/ports/physx/fix_discarded_qualifiers.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/physx/source/geomutils/src/gjk/GuGJKType.h b/physx/source/geomutils/src/gjk/GuGJKType.h
-index a0099e2f..b824ec7a 100644
---- a/physx/source/geomutils/src/gjk/GuGJKType.h
-+++ b/physx/source/geomutils/src/gjk/GuGJKType.h
-@@ -151,7 +151,7 @@ namespace Gu
-
- virtual Ps::aos::Vec3V getCenter() const { return mAToB.transform(getConvex<Convex>().getCenter()); }
-
-- PX_FORCE_INLINE Ps::aos::PsMatTransformV& getRelativeTransform(){ return mAToB; }
-+ PX_FORCE_INLINE const Ps::aos::PsMatTransformV& getRelativeTransform(){ return mAToB; }
-
- //ML: we can't force inline function, otherwise win modern will throw compiler error
- PX_INLINE RelativeConvex<typename ConvexGeom<Convex>::Type > getGjkConvex() const