Skip to content
Snippets Groups Projects
Commit caa1f7ac authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

[#3218] Character '.' stripped by the caller engine

The following were already cleaned up: ' ', '-' , '(', ')'  
parent 24753967
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,7 @@ std::string NumberCleaner::clean (std::string to_clean)
{
strip_char (" ", &to_clean);
strip_char (".", &to_clean);
strip_char ("-", &to_clean);
strip_char ("(", &to_clean);
strip_char (")", &to_clean);
......
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