kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
Log | Files | Refs | README

commit 3368a6ede2f13ce00d2280b6ee8000e7bf38cec5
parent cabdebd2847ad5dcba6532e027e4aacedc7aaaec
Author: d.levin256@gmail.com <d.levin256@gmail.com>
Date:   Mon, 25 Nov 2019 08:45:19 +0000

Provide aligned new for expression_resource

Diffstat:
Mazure-pipelines.yml | 8--------
Minclude/kfr/base/pointer.hpp | 2+-
2 files changed, 1 insertion(+), 9 deletions(-)

diff --git a/azure-pipelines.yml b/azure-pipelines.yml @@ -112,10 +112,6 @@ jobs: - job: iOS_ARM_Clang_Release timeoutInMinutes: 120 - strategy: - matrix: - xcode10.1: - XCODE_VER: 11.2 pool: vmImage: 'macOS-10.14' steps: @@ -127,10 +123,6 @@ jobs: - job: iOS_ARM64_Clang_Release timeoutInMinutes: 120 - strategy: - matrix: - xcode10.1: - XCODE_VER: 11.2 pool: vmImage: 'macOS-10.14' steps: diff --git a/include/kfr/base/pointer.hpp b/include/kfr/base/pointer.hpp @@ -111,7 +111,7 @@ struct expression_vtable<T, 0> } }; -struct expression_resource +struct expression_resource : aligned_new { virtual ~expression_resource() {} virtual void* instance() { return nullptr; }