| 124 | } |
| 125 | |
| 126 | CLI11_INLINE std::string get_group_separators() { |
| 127 | std::string separators{"_'"}; |
| 128 | #if CLI11_HAS_RTTI != 0 |
| 129 | char group_separator = std::use_facet<std::numpunct<char>>(std::locale()).thousands_sep(); |
| 130 | separators.push_back(group_separator); |
| 131 | #endif |
| 132 | return separators; |
| 133 | } |
| 134 | |
| 135 | CLI11_INLINE std::string find_and_replace(std::string str, std::string from, std::string to) { |
| 136 |
nothing calls this directly
no outgoing calls
no test coverage detected