General fixes

Fixed most compiler warnings. Changed used interface from utun0/utun1 to lynx0
This commit is contained in:
2025-11-27 18:43:09 +01:00
parent d2242ebbc7
commit 2a2deae022
10 changed files with 63 additions and 28 deletions

View File

@@ -133,7 +133,7 @@ namespace ColumnLynx::Utils {
std::unordered_map<std::string, std::string> config;
char delimiter = '=';
for (std::string str : readLines) {
for (std::string &str : readLines) {
std::stringstream ss(str);
std::string key;