Skip to content

Commit bef9bd2

Browse files
SOCfperrieraothms
authored andcommitted
Fix dll export on Windows
Fix dll export on Windows
1 parent 34b3ca3 commit bef9bd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ifcgeom/IfcGeom.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ if ( it != cache.T.end() ) { e = it->second; return true; }
7373
#endif
7474

7575
namespace IfcGeom {
76-
class IFC_PARSE_API geometry_exception : public std::exception {
76+
class IFC_GEOM_API geometry_exception : public std::exception {
7777
protected:
7878
std::string message;
7979
public:
@@ -85,7 +85,7 @@ namespace IfcGeom {
8585
}
8686
};
8787

88-
class IFC_PARSE_API too_many_faces_exception : public geometry_exception {
88+
class IFC_GEOM_API too_many_faces_exception : public geometry_exception {
8989
public:
9090
too_many_faces_exception()
9191
: geometry_exception("Too many faces for operation") {}

0 commit comments

Comments
 (0)