dont use reference in arguments

This commit is contained in:
Jeff 2020-09-24 11:59:45 -04:00
parent f568f911d1
commit a3d3aafb5c
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ namespace lokimq
})
.def("listen_curve", &LokiMQ::listen_curve)
.def("add_tagged_thread",
[](LokiMQ & self, const std::string & name) {
[](LokiMQ & self, std::string name) {
return self.add_tagged_thread(name);
})
.def("add_timer",