docs(GridFire): added loads of docs and supressed yaml-cpp shadow warnings

This commit is contained in:
2025-07-24 08:37:52 -04:00
parent f20bffc411
commit c3bc75a7f4
12 changed files with 1061 additions and 122 deletions

View File

@@ -53,10 +53,8 @@ namespace gridfire::io {
ParsedNetworkData parsed;
std::string line;
int line_number = 0;
while (std::getline(file, line)) {
line_number++;
LOG_TRACE_L3(m_logger, "Parsing reaction list file {}, line {}: {}", filename, line_number, line);
LOG_TRACE_L3(m_logger, "Parsing reaction list file {}, line: {}", filename, line);
const size_t comment_pos = line.find('#');
if (comment_pos != std::string::npos) {