Commit b7f4e409 by Maarten L. Hekkelman

ouch... wrong type in verbose output generation

parent a0447ba9
...@@ -2796,12 +2796,11 @@ void Row::swap(size_t cix, ItemRow* a, ItemRow* b) ...@@ -2796,12 +2796,11 @@ void Row::swap(size_t cix, ItemRow* a, ItemRow* b)
else else
{ {
if (VERBOSE) if (VERBOSE)
std::cerr << "In " << childCat->mName << " changing " << linkChildColName << ": " << r[linkChildColName].as<float>() << " => " << (i ? i->mText : "") << std::endl; std::cerr << "In " << childCat->mName << " changing " << linkChildColName << ": " << r[linkChildColName].as<std::string>() << " => " << (i ? i->mText : "") << std::endl;
r[linkChildColName] = i ? i->mText : ""; r[linkChildColName] = i ? i->mText : "";
} }
} }
} }
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment