]> www.ginac.de Git - ginac.git/blobdiff - ginac/exprseq.cpp
[msvc] Yet another compiler bug work around.
[ginac.git] / ginac / exprseq.cpp
index 2b17e8a6ae057ef8fcf36672715791e72f6c1bdc..947d32bd2821122e8b5557c4b59041364739a892 100644 (file)
@@ -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