aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/rfnoc/graph_stream_manager.cpp
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2021-01-08 12:26:09 +0100
committerAaron Rossetto <aaron.rossetto@ni.com>2021-03-11 09:33:57 -0600
commit328572908b6ce8777a780e9fa8106954f749a3a5 (patch)
treebdf26f65aedbdd25c86d1bf6d3cfc65dfb5bea52 /host/lib/rfnoc/graph_stream_manager.cpp
parent2000bbf17e166e89a32f819d0a31c940e1303d1f (diff)
downloaduhd-328572908b6ce8777a780e9fa8106954f749a3a5.tar.gz
uhd-328572908b6ce8777a780e9fa8106954f749a3a5.tar.bz2
uhd-328572908b6ce8777a780e9fa8106954f749a3a5.zip
lib: Remove move-on-return for chdr_packet_writer
This is a pessimizing move, and clang warns about it.
Diffstat (limited to 'host/lib/rfnoc/graph_stream_manager.cpp')
-rw-r--r--host/lib/rfnoc/graph_stream_manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/rfnoc/graph_stream_manager.cpp b/host/lib/rfnoc/graph_stream_manager.cpp
index de86d299b..fdf294006 100644
--- a/host/lib/rfnoc/graph_stream_manager.cpp
+++ b/host/lib/rfnoc/graph_stream_manager.cpp
@@ -31,8 +31,8 @@ public:
for (const auto& lnk : links) {
UHD_ASSERT_THROW(lnk.second);
_link_mgrs.emplace(lnk.first,
- std::move(link_stream_manager::make(
- pkt_factory, *lnk.second, epid_alloc, lnk.first)));
+ link_stream_manager::make(
+ pkt_factory, *lnk.second, epid_alloc, lnk.first));
auto adapter = _link_mgrs.at(lnk.first)->get_adapter_id();
if (_alloc_map.count(adapter) == 0) {
_alloc_map[adapter] = allocation_info{0, 0};