aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@mines-paris.org>2019-02-02 10:46:28 +0100
committerGitHub <noreply@github.com>2019-02-02 10:46:28 +0100
commit81a2c053eecc3e6ce8a5926784b9aae0b88e7033 (patch)
treeded44a6f019ff630513c5128cf749e2e75d2b8dd
parent1c60f4cc408e85aff78482659a80fe974ee5d57b (diff)
parent078f1b4dc3fcb97249c22c8253b5da568b1ab227 (diff)
downloadPROJ-81a2c053eecc3e6ce8a5926784b9aae0b88e7033.tar.gz
PROJ-81a2c053eecc3e6ce8a5926784b9aae0b88e7033.zip
Merge pull request #1244 from rouault/ossfuzz_fix
Export class for oss-fuzz
-rw-r--r--include/proj/common.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/proj/common.hpp b/include/proj/common.hpp
index ad8893f7..d0ecf5d6 100644
--- a/include/proj/common.hpp
+++ b/include/proj/common.hpp
@@ -366,7 +366,8 @@ using ObjectDomainNNPtr = util::nn<ObjectDomainPtr>;
*
* \remark Implements ObjectDomain from \ref ISO_19111_2018
*/
-class ObjectDomain : public util::BaseObject, public util::IComparable {
+class PROJ_GCC_DLL ObjectDomain : public util::BaseObject,
+ public util::IComparable {
public:
//! @cond Doxygen_Suppress
PROJ_DLL ~ObjectDomain() override;
@@ -420,7 +421,7 @@ using ObjectUsageNNPtr = util::nn<ObjectUsagePtr>;
*
* \remark Implements ObjectUsage from \ref ISO_19111_2018
*/
-class ObjectUsage : public IdentifiedObject {
+class PROJ_GCC_DLL ObjectUsage : public IdentifiedObject {
public:
//! @cond Doxygen_Suppress
PROJ_DLL ~ObjectUsage() override;