X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=check%2Fexam_structure.cpp;h=fa83e418af68b7de69a7655e63b1568dff07c09f;hp=044de03f4606f4ba028158e7d2947a2a63731649;hb=e8c6a2891bc68ca8f97a7d4b8bd0dd3ac322d982;hpb=856927275e5e527071fa6a00b7eba3a5287b44cd diff --git a/check/exam_structure.cpp b/check/exam_structure.cpp index 044de03f..fa83e418 100644 --- a/check/exam_structure.cpp +++ b/check/exam_structure.cpp @@ -3,7 +3,7 @@ * Small test for the structure<> template. */ /* - * GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2005 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -47,13 +47,13 @@ inline ex make_sprod(const ex & l, const ex & r) return sprod(sprod_s(l, r)); } -void sprod::print(const print_context & c, unsigned level) const +template <> void sprod::print(const print_context & c, unsigned level) const { const sprod_s & sp = get_struct(); c.s << "<" << sp.left << "|" << sp.right << ">"; } -ex sprod::eval(int level) const +template <> ex sprod::eval(int level) const { // symmetric scalar product const sprod_s & sp = get_struct();