From 63453e8120d2e2eb9f1b836fc1b5651c2494ef1f Mon Sep 17 00:00:00 2001 From: Richard Kreckel Date: Mon, 18 May 2020 08:26:09 +0200 Subject: [PATCH] [C++20] Disambiguate std::integral concept and GiNaC::integral class. --- ginsh/ginsh_parser.ypp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.44.0