From de552105d0e4304d869f3d88729b34a613a11b45 Mon Sep 17 00:00:00 2001 From: Christian Bauer Date: Sun, 29 Sep 2002 19:39:00 +0000 Subject: [PATCH] added missing namespace qualification in is_ex_the_function() macro --- ginac/function.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ginac/function.pl b/ginac/function.pl index d75e8f64..c76fe753 100755 --- a/ginac/function.pl +++ b/ginac/function.pl @@ -365,7 +365,7 @@ template<> inline bool is_exactly_a(const basic & obj) } #define is_ex_the_function(OBJ, FUNCNAME) \\ - (GiNaC::is_exactly_a(OBJ) && GiNaC::ex_to(OBJ).get_serial() == function_index_##FUNCNAME) + (GiNaC::is_exactly_a(OBJ) && GiNaC::ex_to(OBJ).get_serial() == GiNaC::function_index_##FUNCNAME) } // namespace GiNaC -- 2.49.0