summaryrefslogtreecommitdiffstats
path: root/src/core/resources/qframeallocator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/resources/qframeallocator.cpp')
-rw-r--r--src/core/resources/qframeallocator.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/resources/qframeallocator.cpp b/src/core/resources/qframeallocator.cpp
index ead5a790e..c62e7ad0d 100644
--- a/src/core/resources/qframeallocator.cpp
+++ b/src/core/resources/qframeallocator.cpp
@@ -53,13 +53,12 @@ namespace Qt3D {
\class Qt3D::QFrameAllocatorPrivate
\internal
*/
-QFrameAllocatorPrivate::QFrameAllocatorPrivate(QFrameAllocator *qq)
- : q_ptr(qq)
+QFrameAllocatorPrivate::QFrameAllocatorPrivate()
{
}
QFrameAllocator::QFrameAllocator(uint maxObjectSize, uint alignment, uint pageSize)
- : d_ptr(new QFrameAllocatorPrivate(this))
+ : d_ptr(new QFrameAllocatorPrivate)
{
Q_ASSERT(alignment && pageSize && pageSize < UCHAR_MAX);
Q_D(QFrameAllocator);