Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix Issue #285 - getOption returns false when option is set on command l... #331

Merged
merged 1 commit into from
Oct 3, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions source/vibe/core/args.d
Original file line number Diff line number Diff line change
Expand Up @@ -68,17 +68,19 @@ bool getOption(T)(string names, T* pvalue, string help_text)
assert(!g_options.any!(o => o.names == info.names)(), "getOption() may only be called once per option name.");
g_options ~= info;

immutable olen = g_args.length;
getopt(g_args, getoptConfig, names, pvalue);
immutable found = olen > g_args.length;

if (g_haveConfig) {
foreach (name; info.names)
if (auto pv = name in g_config) {
*pvalue = pv.to!T;
return true;
break;
}
}

return false;
return found;
}


Expand Down