mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 20:20:35 +00:00
Avoid moving a temporary object since it prevents copy elision
This commit is contained in:
parent
11ffef0574
commit
52eb3ba240
@ -323,7 +323,7 @@ TEST(GNSSBlockFactoryTest, InstantiateChannels)
|
||||
configuration->set_property("Channel1.item_type", "gr_complex");
|
||||
gr::msg_queue::sptr queue = gr::msg_queue::make(0);
|
||||
std::unique_ptr<GNSSBlockFactory> factory;
|
||||
std::unique_ptr<std::vector<std::unique_ptr<GNSSBlockInterface>>> channels = std::move(factory->GetChannels(configuration, queue));
|
||||
std::unique_ptr<std::vector<std::unique_ptr<GNSSBlockInterface>>> channels = factory->GetChannels(configuration, queue);
|
||||
EXPECT_EQ(static_cast<unsigned int>(2), channels->size());
|
||||
channels->erase(channels->begin(), channels->end());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user