$NetBSD: patch-src_amount.cc,v 1.2 2024/11/26 23:07:02 riastradh Exp $ Fix ctype abuse. https://github.com/ledger/ledger/pull/2341 --- src/amount.cc.orig 2020-05-18 05:30:10.000000000 +0000 +++ src/amount.cc @@ -976,10 +976,11 @@ namespace { char buf[256]; char c = peek_next_nonws(in); READ_INTO(in, buf, 255, c, - std::isdigit(c) || c == '-' || c == '.' || c == ','); + std::isdigit(static_cast(c)) || c == '-' || c == '.' || c == ','); string::size_type len = std::strlen(buf); - while (len > 0 && ! std::isdigit(buf[len - 1])) { + while (len > 0 && + ! std::isdigit(static_cast(buf[len - 1]))) { buf[--len] = '\0'; in.unget(); } @@ -1010,11 +1011,11 @@ bool amount_t::parse(std::istream& in, c } char n; - if (std::isdigit(c)) { + if (std::isdigit(static_cast(c))) { parse_quantity(in, quant); if (! in.eof() && ((n = static_cast(in.peek())) != '\n')) { - if (std::isspace(n)) + if (std::isspace(static_cast(n))) comm_flags |= COMMODITY_STYLE_SEPARATED; commodity_t::parse_symbol(in, symbol); @@ -1030,7 +1031,7 @@ bool amount_t::parse(std::istream& in, c commodity_t::parse_symbol(in, symbol); if (! in.eof() && ((n = static_cast(in.peek())) != '\n')) { - if (std::isspace(static_cast(in.peek()))) + if (std::isspace(in.peek())) comm_flags |= COMMODITY_STYLE_SEPARATED; parse_quantity(in, quant);