X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=ginac%2Fexprseq.cpp;h=06dca0cac37c7e58b9a7eff84557ad8ceba55b36;hb=e100f94d92d574ea89a817eca8c58c5eb3418821;hp=1c28d96ec69264d10a4d54624783f95d208b24ef;hpb=f5e84af31b20c7f732bee375bacc152e7fb01e56;p=ginac.git diff --git a/ginac/exprseq.cpp b/ginac/exprseq.cpp index 1c28d96e..06dca0ca 100644 --- a/ginac/exprseq.cpp +++ b/ginac/exprseq.cpp @@ -3,7 +3,7 @@ * Implementation of GiNaC's exprseq. */ /* - * GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2015 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,19 +17,19 @@ * * 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 */ #include "exprseq.h" namespace GiNaC { -template <> GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(exprseq, basic, +template <> GINAC_IMPLEMENT_REGISTERED_CLASS_OPT_T(exprseq, basic, print_func(&exprseq::do_print). print_func(&exprseq::do_print_tree)) /** Specialization of container::info() for exprseq. */ -bool exprseq::info(unsigned inf) const +template <> bool exprseq::info(unsigned inf) const { if (inf == info_flags::exprseq) return true; @@ -37,4 +37,10 @@ bool exprseq::info(unsigned inf) const return inherited::info(inf); } +#ifdef _MSC_VER + // MSVC does not include exprseq::info() in the library without + // defining some kind of dummy function here + basic* dummy_func(void) { return new exprseq(); } +#endif + } // namespace GiNaC