Skip to content
Snippets Groups Projects
Commit 89ebef65 authored by Lioncash's avatar Lioncash
Browse files

sink_details: std::move std::function instances

Given std::function is allowed to potentially allocate, these should be
std::move'd to prevent potential reallocation (should that ever happen).
parent 746d7d4d
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@
#include <functional>
#include <memory>
#include <utility>
#include <vector>
namespace AudioCore {
......@@ -15,7 +16,7 @@ class Sink;
struct SinkDetails {
SinkDetails(const char* id_, std::function<std::unique_ptr<Sink>(std::string)> factory_,
std::function<std::vector<std::string>()> list_devices_)
: id(id_), factory(factory_), list_devices(list_devices_) {}
: id(id_), factory(std::move(factory_)), list_devices(std::move(list_devices_)) {}
/// Name for this sink.
const char* id;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment