X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?a=blobdiff_plain;ds=sidebyside;f=ginac%2Fexprseq.cpp;h=ecb92b07a2315fd19b769a1bc34ac8477c4a3adb;hb=8ed95601ab0cff1bb02b2a908e5a2c118b1f0a06;hp=84efbc0648790ff45a5ee2e07e487bb1cba7fdf5;hpb=1602530f716ba1d425a0667b897182b99c374823;p=ginac.git diff --git a/ginac/exprseq.cpp b/ginac/exprseq.cpp index 84efbc06..ecb92b07 100644 --- a/ginac/exprseq.cpp +++ b/ginac/exprseq.cpp @@ -3,7 +3,7 @@ * Implementation of GiNaC's exprseq. */ /* - * GiNaC Copyright (C) 1999-2009 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2011 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