remove invalid flag

This commit is contained in:
Lion Kortlepel
2024-10-13 23:42:07 +02:00
committed by Tixx
parent fd398ed5ab
commit 7d00d489e4
16 changed files with 16 additions and 2633 deletions

View File

@@ -44,6 +44,8 @@
#define beammp_stdout std::cout
#endif
#include "Logger.h"
namespace Utils {
inline std::vector<std::string> Split(const std::string& String, const std::string& delimiter) {
std::vector<std::string> Val;
@@ -58,7 +60,7 @@ namespace Utils {
if (!s.empty())
Val.push_back(s);
return Val;
};
}
inline std::string ExpandEnvVars(const std::string& input) {
std::string result;
std::regex envPattern(R"(%([^%]+)%|\$([A-Za-z_][A-Za-z0-9_]*)|\$\{([^}]+)\})");
@@ -299,7 +301,6 @@ namespace Utils {
return "";
}
}
};
template<typename T>
inline std::vector<char> PrependHeader(const T& data) {