We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent7918935 commit9b96b47Copy full SHA for 9b96b47
engine/services/engine_service.cc
@@ -763,8 +763,8 @@ cpp::result<void, std::string> EngineService::LoadEngine(
763
// register deps
764
if (!(getenv("ENGINE_PATH"))) {
765
std::vector<std::filesystem::path> paths{};
766
- paths.push_back(std::move(cuda_path));
767
- paths.push_back(std::move(engine_dir_path));
+ paths.push_back(cuda_path);
+ paths.push_back(engine_dir_path);
768
769
CTL_DBG("Registering dylib for"
770
<< ne <<" with" <<std::to_string(paths.size()) <<" paths.");
@@ -830,8 +830,8 @@ void EngineService::RegisterEngineLibPath() {
830
831
832
833
834
835
836
837