From: Richard Kreckel Date: Mon, 18 May 2020 06:26:09 +0000 (+0200) Subject: [C++20] Disambiguate std::integral concept and GiNaC::integral class. X-Git-Tag: release_1-7-10~6 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=63453e8120d2e2eb9f1b836fc1b5651c2494ef1f [C++20] Disambiguate std::integral concept and GiNaC::integral class. --- diff --git a/ginsh/ginsh_parser.ypp b/ginsh/ginsh_parser.ypp index c76616d0..e224fda9 100644 --- a/ginsh/ginsh_parser.ypp +++ b/ginsh/ginsh_parser.ypp @@ -442,7 +442,7 @@ static ex f_integer_content(const exprseq &e) static ex f_integral(const exprseq &e) { CHECK_ARG(0, symbol, integral); - return integral(e[0], e[1], e[2], e[3]); + return GiNaC::integral(e[0], e[1], e[2], e[3]); } static ex f_inverse(const exprseq &e)