X-Git-Url: https://ginac.de/ginac.git//ginac.git?a=blobdiff_plain;ds=sidebyside;f=ginac%2Fexprseq.cpp;h=06dca0cac37c7e58b9a7eff84557ad8ceba55b36;hb=62168ea93d23c81172ad07f9ec2f7044d1570681;hp=bee19277a5c1cb358f4bf7fae2f0cc339eb7d723;hpb=3ac17e18ada69428fe170c10abcc5f33a30f0676;p=ginac.git diff --git a/ginac/exprseq.cpp b/ginac/exprseq.cpp index bee19277..06dca0ca 100644 --- a/ginac/exprseq.cpp +++ b/ginac/exprseq.cpp @@ -3,7 +3,7 @@ * Implementation of GiNaC's exprseq. */ /* - * GiNaC Copyright (C) 1999-2006 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 @@ -37,4 +37,10 @@ template <> 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