fixed: this should not be virtual

quells warnings about deleting object with virtual members and
non-virtual destructor
This commit is contained in:
Arne Morten Kvarving
2018-01-09 14:40:52 +01:00
parent 4d76fd8ebd
commit 57bfc9cb8a

View File

@@ -108,7 +108,7 @@ public:
//! \brief Blocking receive of a double
//! \param[out] value Received value
//! \param[in] source Process id for source
virtual void receive(double& value, int source) const;
void receive(double& value, int source) const;
//! \brief Blocking receive of a double vector
//! \param[out] rvec Double vector to receive
//! \param[in] source Process id for source