MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / fixNumericLocale

Function fixNumericLocale

json/jsoncpp.cpp:182–189  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

180 * @see https://github.com/open-source-parsers/jsoncpp/pull/9
181 */
182template <typename Iter> Iter fixNumericLocale(Iter begin, Iter end) {
183 for (; begin != end; ++begin) {
184 if (*begin == ',') {
185 *begin = '.';
186 }
187 }
188 return begin;
189}
190
191template <typename Iter> void fixNumericLocaleInput(Iter begin, Iter end) {
192 char decimalPoint = getDecimalPoint();

Callers 1

valueToStringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected