diff --git a/src/rmq/rmqt/rmqt_vhostinfo.cpp b/src/rmq/rmqt/rmqt_vhostinfo.cpp index 85f1a71..c453e13 100644 --- a/src/rmq/rmqt/rmqt_vhostinfo.cpp +++ b/src/rmq/rmqt/rmqt_vhostinfo.cpp @@ -28,6 +28,8 @@ VHostInfo::VHostInfo(const bsl::shared_ptr endpoint, { } +VHostInfo::~VHostInfo() {} + bsl::shared_ptr VHostInfo::endpoint() const { return d_endpoint; diff --git a/src/rmq/rmqt/rmqt_vhostinfo.h b/src/rmq/rmqt/rmqt_vhostinfo.h index 4f5142a..580e30a 100644 --- a/src/rmq/rmqt/rmqt_vhostinfo.h +++ b/src/rmq/rmqt/rmqt_vhostinfo.h @@ -36,6 +36,8 @@ class VHostInfo { VHostInfo(const bsl::shared_ptr endpoint, const bsl::shared_ptr credentials); + virtual ~VHostInfo(); + virtual bsl::shared_ptr endpoint() const; virtual bsl::shared_ptr credentials() const;