]> www.ginac.de Git - ginac.git/blobdiff - ginac/lst.h
Synced to HEAD
[ginac.git] / ginac / lst.h
index a9de75d3497d3562e4fe61d856a028fbe92bacbc..415f961d72e5403482c875c6e8edea6594e96a61 100644 (file)
@@ -3,7 +3,7 @@
  *  Definition of GiNaC's lst. */
 
 /*
- *  GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2004 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
@@ -32,16 +32,16 @@ namespace GiNaC {
 typedef container<std::list> 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;