From: Christian Bauer Date: Wed, 6 Oct 2004 15:31:03 +0000 (+0000) Subject: replaced non-ASCII character in exception msg X-Git-Tag: release_1-3-0~21 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=d6961bac52f5aa15d438d77156f9738974fec0e5 replaced non-ASCII character in exception msg --- diff --git a/ginac/numeric.cpp b/ginac/numeric.cpp index b6c95e01..3130e272 100644 --- a/ginac/numeric.cpp +++ b/ginac/numeric.cpp @@ -1629,7 +1629,7 @@ const numeric binomial(const numeric &n, const numeric &k) } // should really be gamma(n+1)/gamma(k+1)/gamma(n-k+1) or a suitable limit - throw std::range_error("numeric::binomial(): donĀ“t know how to evaluate that."); + throw std::range_error("numeric::binomial(): don't know how to evaluate that."); }