fix to have an happy CI

This commit is contained in:
Gwenhael Goavec-Merou
2025-03-18 23:02:11 +01:00
parent 414a7259f0
commit 4c4f48ea93
4 changed files with 5 additions and 4 deletions
+3 -2
View File
@@ -6,8 +6,9 @@
#include "common.hpp"
#include <string>
#include <cstdlib>
#include <string>
#include <vector>
/*!
* \brief return shell environment variable value
@@ -31,7 +32,7 @@ const std::vector<std::string> splitString(const std::string& in,
std::vector<std::string> tokens;
size_t start = 0, end = 0;
while ((end = in.find(',', start)) != std::string::npos) {
while ((end = in.find(delim, start)) != std::string::npos) {
tokens.push_back(in.substr(start, end - start));
start = end + 1;
}