Added song streamingh endpoint and removed redundant making oatpp::String shared when it already is a shared object #61

This commit is contained in:
kdeng00
2019-09-08 18:48:14 -04:00
parent 949abf8244
commit 19ddb9be0b
6 changed files with 83 additions and 102 deletions
+2 -2
View File
@@ -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;
};