git://www.ginac.de
/
ginac.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c81dc7
)
added missing namespace qualification in is_ex_the_function() macro
author
Christian Bauer
<Christian.Bauer@uni-mainz.de>
Sun, 29 Sep 2002 19:39:00 +0000
(19:39 +0000)
committer
Christian Bauer
<Christian.Bauer@uni-mainz.de>
Sun, 29 Sep 2002 19:39:00 +0000
(19:39 +0000)
ginac/function.pl
patch
|
blob
|
history
diff --git
a/ginac/function.pl
b/ginac/function.pl
index d75e8f645ebf3e359d565067837b31ba60d7a174..c76fe75385a184323aec6d86d7e5ae187b45ac72 100755
(executable)
--- a/
ginac/function.pl
+++ b/
ginac/function.pl
@@
-365,7
+365,7
@@
template<> inline bool is_exactly_a<function>(const basic & obj)
}
#define is_ex_the_function(OBJ, FUNCNAME) \\
- (GiNaC::is_exactly_a<GiNaC::function>(OBJ) && GiNaC::ex_to<GiNaC::function>(OBJ).get_serial() == function_index_##FUNCNAME)
+ (GiNaC::is_exactly_a<GiNaC::function>(OBJ) && GiNaC::ex_to<GiNaC::function>(OBJ).get_serial() ==
GiNaC::
function_index_##FUNCNAME)
} // namespace GiNaC