Fix dll export on Windows

Fix dll export on Windows
This commit is contained in:
Unknown
2018-09-18 23:28:14 +02:00
committed by Thomas Krijnen
parent 34b3ca307f
commit bef9bd25f7
+2 -2
View File
@@ -73,7 +73,7 @@ if ( it != cache.T.end() ) { e = it->second; return true; }
#endif #endif
namespace IfcGeom { namespace IfcGeom {
class IFC_PARSE_API geometry_exception : public std::exception { class IFC_GEOM_API geometry_exception : public std::exception {
protected: protected:
std::string message; std::string message;
public: 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: public:
too_many_faces_exception() too_many_faces_exception()
: geometry_exception("Too many faces for operation") {} : geometry_exception("Too many faces for operation") {}