Browse Source

uorb pub: cleanup objects

sbg
Thomas Gubler 10 years ago
parent
commit
c33173cd5d
  1. 4
      src/platforms/px4_publisher.h

4
src/platforms/px4_publisher.h

@ -136,7 +136,9 @@ public: @@ -136,7 +136,9 @@ public:
_uorb_pub(new uORB::PublicationBase(T::handle()))
{}
~PublisherUORB() {};
~PublisherUORB() {
delete _uorb_pub;
};
/** Publishes msg
* @param msg the message which is published to the topic

Loading…
Cancel
Save