From 2fab62da92c2bf6c381be303fb9af06da53712f6 Mon Sep 17 00:00:00 2001 From: drslebedev Date: Mon, 3 Jun 2024 16:43:26 +0200 Subject: [PATCH] Back to BasicSettings due to performance issues. Signed-off-by: drslebedev --- core/include/gnuradio-4.0/Block.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/include/gnuradio-4.0/Block.hpp b/core/include/gnuradio-4.0/Block.hpp index 7554a37d..b446c4e9 100644 --- a/core/include/gnuradio-4.0/Block.hpp +++ b/core/include/gnuradio-4.0/Block.hpp @@ -527,7 +527,7 @@ class Block : public lifecycle::StateMachine, protected std::tuple> initParameter) noexcept(false) : Block(property_map(initParameter)) {} Block(property_map initParameter = {}) noexcept(false) // N.B. throws in case of on contract violations - : _settings(std::make_unique>(*static_cast(this))) { // N.B. safe delegated use of this (i.e. not used during construction) + : _settings(std::make_unique>(*static_cast(this))) { // N.B. safe delegated use of this (i.e. not used during construction) // check Block contracts checkBlockContracts(this))>();