X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fexprseq.cpp;h=c995a11e8805d15f0b30aafb4ba1bcd1bd8cb2ef;hp=894eee831547e2bca165421dba2165a81d04415e;hb=1be7026a705dfefedcd838e6b60795ca6d469bf9;hpb=7d870583a6bf21a2ffb7b6f051b702064623892e diff --git a/ginac/exprseq.cpp b/ginac/exprseq.cpp index 894eee83..c995a11e 100644 --- a/ginac/exprseq.cpp +++ b/ginac/exprseq.cpp @@ -3,7 +3,7 @@ * Implementation of GiNaC's exprseq. */ /* - * GiNaC Copyright (C) 1999-2008 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2018 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