From 05659639d29fd83990eba85a97fa4803eb36da2d Mon Sep 17 00:00:00 2001 From: Christopher Dilks Date: Mon, 9 Sep 2024 12:06:43 -0400 Subject: [PATCH] fix: virtual destructor --- src/iguana/services/ConcurrentParam.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iguana/services/ConcurrentParam.h b/src/iguana/services/ConcurrentParam.h index 1185d818..9c8ca485 100644 --- a/src/iguana/services/ConcurrentParam.h +++ b/src/iguana/services/ConcurrentParam.h @@ -20,7 +20,7 @@ namespace iguana { /// @param model the concurrency model this instance must be /// @see `ConcurrentParamFactory`, the preferred instantiation method ConcurrentParam(std::string const& model); - ~ConcurrentParam() {} + virtual ~ConcurrentParam() = default; /// @brief access a stored value /// @param key the access key