From: Christian Bauer Date: Thu, 21 Aug 2003 22:48:56 +0000 (+0000) Subject: ex_to<>(), is_a<>() and is_exactly_a<>() weren't inlined X-Git-Tag: release_1-2-0~135 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=f0b65ccffdd199f86eb0396e53d5428e4c555f7d ex_to<>(), is_a<>() and is_exactly_a<>() weren't inlined --- 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: