Skip to content
Snippets Groups Projects
Commit c271fbd7 authored by Oliver Heidmann's avatar Oliver Heidmann
Browse files

option missval now uses string_to_floating

parent e2541047
No related branches found
No related tags found
1 merge request!329M300433/number conversion improvement
Pipeline #97066 passed
......@@ -328,7 +328,7 @@ setup_options()
CLIOptions::option("set_missval", "m")
->describe_argument("missval")
->add_effect([&](const std::string &argument) {
auto [success, mv] = string_to_number<double>(argument);
auto [success, mv] = string_to_floating<double>(argument);
if (success)
{
Debug("set missval of cdi to: %f", mv);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment