| 272 | } |
| 273 | |
| 274 | std::string MetadataTagProcessorImpl::ValidateAndFormat_level(std::string v) |
| 275 | { |
| 276 | // Some mappers use full width unicode digits. We can handle that. |
| 277 | strings::NormalizeDigits(v); |
| 278 | // value of level can be more than one number, so e.g. "1;2" or "3-5" |
| 279 | return v; |
| 280 | } |
| 281 | |
| 282 | std::string MetadataTagProcessorImpl::ValidateAndFormat_denomination(std::string const & v) |
| 283 | { |
nothing calls this directly
no test coverage detected