aboutsummaryrefslogtreecommitdiff
path: root/NvCloth/src/cuda/CuDeviceVector.h
diff options
context:
space:
mode:
Diffstat (limited to 'NvCloth/src/cuda/CuDeviceVector.h')
-rw-r--r--NvCloth/src/cuda/CuDeviceVector.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/NvCloth/src/cuda/CuDeviceVector.h b/NvCloth/src/cuda/CuDeviceVector.h
index 0fabb66..9dc894a 100644
--- a/NvCloth/src/cuda/CuDeviceVector.h
+++ b/NvCloth/src/cuda/CuDeviceVector.h
@@ -73,7 +73,7 @@ class CuDeviceVector
}
template <typename Alloc>
- CuDeviceVector(const physx::shdfnd::Array<T, Alloc>& other)
+ CuDeviceVector(const ps::Array<T, Alloc>& other)
{
operator=(other);
}
@@ -91,7 +91,7 @@ class CuDeviceVector
}
template <typename Alloc>
- CuDeviceVector& operator = (const physx::shdfnd::Array<T, Alloc>& other)
+ CuDeviceVector& operator = (const ps::Array<T, Alloc>& other)
{
const T* first = other.empty() ? 0 : &other.front();
assign(first, first + other.size());