From d44795341b2651730985e14957a1383a295fe39f Mon Sep 17 00:00:00 2001 From: Unknown Date: Tue, 18 Sep 2018 23:28:14 +0200 Subject: [PATCH] Fix dll export on Windows Fix dll export on Windows --- src/ifcgeom/IfcGeom.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ifcgeom/IfcGeom.h b/src/ifcgeom/IfcGeom.h index 16832cce65..71e738f09d 100644 --- a/src/ifcgeom/IfcGeom.h +++ b/src/ifcgeom/IfcGeom.h @@ -73,7 +73,7 @@ if ( it != cache.T.end() ) { e = it->second; return true; } #endif namespace IfcGeom { - class IFC_PARSE_API geometry_exception : public std::exception { + class IFC_GEOM_API geometry_exception : public std::exception { protected: std::string message; public: @@ -85,7 +85,7 @@ namespace IfcGeom { } }; - class IFC_PARSE_API too_many_faces_exception : public geometry_exception { + class IFC_GEOM_API too_many_faces_exception : public geometry_exception { public: too_many_faces_exception() : geometry_exception("Too many faces for operation") {}