Unverified Commit 9e227c0a authored by Ge Jun's avatar Ge Jun Committed by GitHub

Merge pull request #361 from gydong/master

fix the display of gflag default values of builtin
parents 6d153dd7 8f7eceb6
......@@ -89,7 +89,7 @@ static void PrintFlag(std::ostream& os, const GFLAGS_NS::CommandLineFlagInfo& fl
if (flag.default_value != flag.current_value) {
os << " (default:" << (use_html ?
HtmlReplace(flag.default_value) :
flag.current_value) << ')';
flag.default_value) << ')';
}
if (use_html) {
os << "</span>";
......
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