Move uORB Subscription getter to header file (#6891)

This commit is contained in:
Nate Weibley
2017-03-24 15:47:22 -04:00
committed by Daniel Agar
parent 8a6b6f9be5
commit f5ffdba4cc
2 changed files with 1 additions and 4 deletions
+1 -1
View File
@@ -193,7 +193,7 @@ public:
/*
* This function gets the T struct data
* */
const T &get();
const T &get() const { return _data; }
private:
T _data;
};