diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-02-15 16:05:47 -0800 |
---|---|---|
committer | Brent Stapleton <brent.stapleton@ettus.com> | 2019-02-28 10:24:52 -0800 |
commit | 7193670fb3abaf92b5464d466adfea4cf6f888ee (patch) | |
tree | eb4f9efdad714562765721b069300bc47ee0c08a /host/include | |
parent | a3213183dcf3f5a4e88adbc1f6cbf5187f421027 (diff) | |
download | uhd-7193670fb3abaf92b5464d466adfea4cf6f888ee.tar.gz uhd-7193670fb3abaf92b5464d466adfea4cf6f888ee.tar.bz2 uhd-7193670fb3abaf92b5464d466adfea4cf6f888ee.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()); |