src/yolo_console_dll.cpp
@@ -70,7 +70,7 @@ std::ifstream file(filename); std::vector<std::string> file_lines; if (!file.is_open()) return file_lines; for(std::string line; file >> line;) file_lines.push_back(line); for(std::string line; getline(file, line);) file_lines.push_back(line); std::cout << "object names loaded \n"; return file_lines; }