diff options
author | Ashish Chaudhari <ashish@ettus.com> | 2015-08-11 10:30:41 -0700 |
---|---|---|
committer | Ashish Chaudhari <ashish@ettus.com> | 2015-08-11 10:30:41 -0700 |
commit | 32d94789931b761ed889e6f2f5352e5c665c8a7d (patch) | |
tree | 8833c8f214052ed6852d081b5e63ef543324c55f /host | |
parent | dff93a59307f243b3bc7c8c699c48f2263ee2ebb (diff) | |
download | uhd-32d94789931b761ed889e6f2f5352e5c665c8a7d.tar.gz uhd-32d94789931b761ed889e6f2f5352e5c665c8a7d.tar.bz2 uhd-32d94789931b761ed889e6f2f5352e5c665c8a7d.zip |
uhd: Fixed initialization of members in dirty_tracked
Diffstat (limited to 'host')
-rw-r--r-- | host/include/uhd/utils/dirty_tracked.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/include/uhd/utils/dirty_tracked.hpp b/host/include/uhd/utils/dirty_tracked.hpp index 8be80fb1f..d228a9e65 100644 --- a/host/include/uhd/utils/dirty_tracked.hpp +++ b/host/include/uhd/utils/dirty_tracked.hpp @@ -123,8 +123,8 @@ namespace uhd{ } private: - bool _dirty; data_t _data; + bool _dirty; }; } //namespace uhd |