From f0b65ccffdd199f86eb0396e53d5428e4c555f7d Mon Sep 17 00:00:00 2001 From: Christian Bauer Date: Thu, 21 Aug 2003 22:48:56 +0000 Subject: [PATCH] ex_to<>(), is_a<>() and is_exactly_a<>() weren't inlined --- ginac/ex.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ginac/ex.h b/ginac/ex.h index 1f4ead98..38dcf732 100644 --- a/ginac/ex.h +++ b/ginac/ex.h @@ -62,10 +62,10 @@ class scalar_products; class ex { friend class archive_node; - friend bool are_ex_trivially_equal(const ex &, const ex &); - template friend const T &ex_to(const ex &); - template friend bool is_a(const ex &); - template friend bool is_exactly_a(const ex &); + friend inline bool are_ex_trivially_equal(const ex &, const ex &); + template friend inline const T &ex_to(const ex &); + template friend inline bool is_a(const ex &); + template friend inline bool is_exactly_a(const ex &); // default constructor, copy constructor and assignment operator public: -- 2.44.0