From b93783010b78092487b4e4a4004353e99a0df0be Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 21 Jan 2016 08:40:58 +0100 Subject: [PATCH] fix --- CGAL_Core/include/CGAL/CORE/BigInt.h | 6 +++--- CGAL_Core/include/CGAL/CORE/Expr_impl.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CGAL_Core/include/CGAL/CORE/BigInt.h b/CGAL_Core/include/CGAL/CORE/BigInt.h index 78e3f837450..6469b7b7498 100644 --- a/CGAL_Core/include/CGAL/CORE/BigInt.h +++ b/CGAL_Core/include/CGAL/CORE/BigInt.h @@ -94,8 +94,8 @@ public: mpz_clear(mp); } - CORE_NEW(BigIntRep) - CORE_DELETE(BigIntRep) + CGAL_CORE_EXPORT CORE_NEW(BigIntRep) + CGAL_CORE_EXPORT CORE_DELETE(BigIntRep) mpz_srcptr get_mp() const { return mp; @@ -559,7 +559,7 @@ inline BigInt randomize(const BigInt& a) { } //@} - CORE_MEMORY_IMPL(BigIntRep) + } //namespace CORE diff --git a/CGAL_Core/include/CGAL/CORE/Expr_impl.h b/CGAL_Core/include/CGAL/CORE/Expr_impl.h index 5fbebb9d1ad..d15e0004ec5 100644 --- a/CGAL_Core/include/CGAL/CORE/Expr_impl.h +++ b/CGAL_Core/include/CGAL/CORE/Expr_impl.h @@ -1210,7 +1210,7 @@ void BinOpRep::debugTree(int level, int indent, int depthLimit) const { second->debugTree(level, indent + 2, depthLimit - 1); } - +CORE_MEMORY_IMPL(BigIntRep) CORE_MEMORY_IMPL(BigRatRep) CORE_MEMORY_IMPL(ConstDoubleRep) CORE_MEMORY_IMPL(ConstRealRep)