Skip to content
Snippets Groups Projects
Commit e8cb9812 authored by Franck Dary's avatar Franck Dary
Browse files

Fixed printForDebug when head is _

parent d846104c
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,7 @@ void Config::printForDebug(FILE * dest) const
std::string toPrintCol = colContent;
try
{
if (getColName(i) == headColName)
if (getColName(i) == headColName && toPrintCol != "_")
if (toPrintCol != "0")
toPrintCol = getAsFeature(idColName, std::stoi(toPrintCol));
} catch(std::exception & e) {util::myThrow(fmt::format("toPrintCol='{}' {}", toPrintCol, e.what()));}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment