From 60fa58e847fd8368059e13e6d9b941fc0e75291b Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 10 Oct 2003 18:53:27 +0000 Subject: *** empty log message *** --- amount.cc | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'amount.cc') diff --git a/amount.cc b/amount.cc index d7cf0d88..1f76d64f 100644 --- a/amount.cc +++ b/amount.cc @@ -547,16 +547,11 @@ static commodity * parse_amount(mpz_t out, const char * num, if (saw_commodity) { commodities_map_iterator item = main_ledger->commodities.find(symbol.c_str()); - if (item == main_ledger->commodities.end()) { + if (item == main_ledger->commodities.end()) comm = new commodity(symbol, prefix, separate, thousands, european, precision); - } else { + else comm = (*item).second; - - if (use_warnings && precision > comm->precision) - std::cerr << "Warning: Use of higher precision than expected: " - << value_str << std::endl; - } } parse_number(out, value_str.c_str(), comm); -- cgit v1.2.3