| 70 | } |
| 71 | |
| 72 | MetadataResult SetDecimalSep(ShellState &state, const vector<string> &args) { |
| 73 | return SetSeparator(state, args, "decimal", state.decimal_separator); |
| 74 | } |
| 75 | |
| 76 | MetadataResult SetThousandSep(ShellState &state, const vector<string> &args) { |
| 77 | return SetSeparator(state, args, "thousand", state.thousand_separator); |
nothing calls this directly
no test coverage detected