Skip to content

Commit

Permalink
fix: virtual destructor
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Sep 9, 2024
1 parent 6d1e7d8 commit 0565963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/iguana/services/ConcurrentParam.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0565963

Please sign in to comment.