X-Git-Url: https://ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=ginac%2Flst.h;h=33f28826fbda7c4024d97cfa2fdb255914028d5e;hb=f772746ad9d324b00f53beb7bfa29711286d93f2;hp=a5463c8f8273ff1c9438fd2a9761ad4e1aab5e45;hpb=6d225ee55693c0617d254e6fa283c00c71bd2919;p=ginac.git diff --git a/ginac/lst.h b/ginac/lst.h index a5463c8f..33f28826 100644 --- a/ginac/lst.h +++ b/ginac/lst.h @@ -3,7 +3,7 @@ * Definition of GiNaC's lst. */ /* - * GiNaC Copyright (C) 1999-2004 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2007 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 @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef __GINAC_LST_H__ @@ -32,16 +32,16 @@ namespace GiNaC { typedef container lst; /** Specialization of container::get_tinfo() for lst. */ -inline unsigned lst::get_tinfo() { return TINFO_lst; } +template<> inline unsigned lst::get_tinfo() { return TINFO_lst; } /** Specialization of container::get_default_flags() for lst. */ -inline unsigned lst::get_default_flags() { return status_flags::not_shareable; } +template<> inline unsigned lst::get_default_flags() { return status_flags::not_shareable; } /** Specialization of container::get_open_delim() for lst. */ -inline char lst::get_open_delim() { return '{'; } +template<> inline char lst::get_open_delim() { return '{'; } /** Specialization of container::get_close_delim() for lst. */ -inline char lst::get_close_delim() { return '}'; } +template<> inline char lst::get_close_delim() { return '}'; } // defined in lst.cpp template<> bool lst::info(unsigned inf) const;