From 800c49097da2ee61c1c27a286776c50fa6466b88 Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Mon, 18 Nov 2019 08:47:55 +0100 Subject: [PATCH] Remove method declaration that's not used or implemented MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: If8c03c08b7bfc162908510cac278ce9267b61cdf Reviewed-by: MÃ¥rten Nordheim Reviewed-by: Thiago Macieira --- src/corelib/tools/qarraydata.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/corelib/tools/qarraydata.h b/src/corelib/tools/qarraydata.h index 2515c1ae5a4..ed2c7a41c13 100644 --- a/src/corelib/tools/qarraydata.h +++ b/src/corelib/tools/qarraydata.h @@ -157,8 +157,6 @@ struct Q_CORE_EXPORT QArrayData #endif static void *allocate(QArrayData **pdata, size_t objectSize, size_t alignment, size_t capacity, ArrayOptions options = DefaultAllocationFlags) noexcept; - Q_REQUIRED_RESULT static QArrayData *reallocateUnaligned(QArrayData *data, size_t objectSize, - size_t newCapacity, ArrayOptions newOptions = DefaultAllocationFlags) noexcept; Q_REQUIRED_RESULT static QPair reallocateUnaligned(QArrayData *data, void *dataPointer, size_t objectSize, size_t newCapacity, ArrayOptions newOptions = DefaultAllocationFlags) Q_DECL_NOTHROW; Q_REQUIRED_RESULT static QArrayData *prepareRawData(ArrayOptions options = ArrayOptions(RawDataType))