summaryrefslogtreecommitdiffstats
path: root/src/server/events/CreateGraph.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/events/CreateGraph.cpp')
-rw-r--r--src/server/events/CreateGraph.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/events/CreateGraph.cpp b/src/server/events/CreateGraph.cpp
index ea66ae55..6b85281d 100644
--- a/src/server/events/CreateGraph.cpp
+++ b/src/server/events/CreateGraph.cpp
@@ -54,10 +54,10 @@ CreateGraph::CreateGraph(Engine& engine,
const std::shared_ptr<Interface>& client,
int32_t id,
SampleCount timestamp,
- const raul::Path& path,
+ raul::Path path,
const Properties& properties)
: Event(engine, client, id, timestamp)
- , _path(path)
+ , _path(std::move(path))
, _properties(properties)
, _graph(nullptr)
, _parent(nullptr)