diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-02-15 16:05:47 -0800 |
---|---|---|
committer | Michael West <michael.west@ettus.com> | 2019-03-05 10:31:58 -0800 |
commit | e8288d438ca87b3b0712f44925f35b03d6bc1f0a (patch) | |
tree | 90502a614c94862c9a62306e10163878adb1e0e5 /host/include | |
parent | 521ef15a5ef91cfa7fe04264a47b34855ba6bf89 (diff) | |
download | uhd-e8288d438ca87b3b0712f44925f35b03d6bc1f0a.tar.gz uhd-e8288d438ca87b3b0712f44925f35b03d6bc1f0a.tar.bz2 uhd-e8288d438ca87b3b0712f44925f35b03d6bc1f0a.zip |
types: sid: Remove duplicate operator=()
This fixes a warning about multiple operators. Doesn't change any
functionality.
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/types/sid.hpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/host/include/uhd/types/sid.hpp b/host/include/uhd/types/sid.hpp index fe3ac1ac7..09f4b74b9 100644 --- a/host/include/uhd/types/sid.hpp +++ b/host/include/uhd/types/sid.hpp @@ -198,12 +198,6 @@ public: return *this; } - sid_t operator=(sid_t& sid) - { - set_sid(sid.get_sid()); - return *this; - } - sid_t operator=(const sid_t& sid) { set_sid(sid.get_sid()); |