Added song streamingh endpoint and removed redundant making oatpp::String shared when it already is a shared object #61
This commit is contained in:
@@ -112,8 +112,8 @@ namespace model
|
||||
{
|
||||
BinaryPath() = default;
|
||||
BinaryPath(const char *p) : path(std::move(p)) { }
|
||||
BinaryPath(std::string& p) : path(std::move(p)) { }
|
||||
BinaryPath(const std::string& p) : path(std::move(p)) { }
|
||||
BinaryPath(std::string& p) : path(p) { }
|
||||
BinaryPath(const std::string& p) : path(p) { }
|
||||
|
||||
std::string path;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user