"src/git@developer.sourcefind.cn:renzhc/diffusers_dcu.git" did not exist on "3dd339379d1d34b06d3eafbf6c450f7798c6ce67"
Commit c801f151 authored by Davis King's avatar Davis King
Browse files

Fixed a bug which prevented get_option() from compiling if given both a

command line parser and config reader.
parent 0b463257
...@@ -170,7 +170,7 @@ namespace dlib ...@@ -170,7 +170,7 @@ namespace dlib
const char* default_value const char* default_value
) )
{ {
return get_option(parser, cr, std::string(default_value)); return get_option(parser, cr, option_name, std::string(default_value));
} }
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
......
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