Conversation
|
Hi @a1346054, thanks for your contribution. Every change set looks good and straightforward. But I found minor issue for doc/lz4_manual.html. Since this file is automatically generated by If you want solve this, please fix I think the root cause of this cosmetic issue is The following change may resolve the issue. But I'm not sure it satisfy your intention or not. void print_line(stringstream &sout, string line)
{
+ if (line.find_first_not_of(' ') == std::string::npos) line = "";
if (line.substr(0,11) == "LZ4LIB_API ") line = line.substr(11);
...
}(edit) doc/lz4frame_manual.html is also generated by |
|
I didn't want to touch the contrib files, so I now changed that commit so that it doesn't touch those autogenerated files. |
No description provided.