aboutsummaryrefslogtreecommitdiff
path: root/src/iso19111
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2022-01-04 20:57:25 +0100
committerEven Rouault <even.rouault@spatialys.com>2022-01-04 21:00:06 +0100
commit4f7b22982db2c7ef5633bb70e2af1acfcc45df76 (patch)
tree8c21287e23d71133d167d56aa767b412478e481d /src/iso19111
parent1254a211beac3f479d193794508a3fcea4f8790f (diff)
downloadPROJ-4f7b22982db2c7ef5633bb70e2af1acfcc45df76.tar.gz
PROJ-4f7b22982db2c7ef5633bb70e2af1acfcc45df76.zip
Fix doc generation with Doxygen 1.9.3
Since the update to Doxygen 1.9.3, doc generation was broken. With bisection of doxygen, it was found this was due to commit https://github.com/doxygen/doxygen/commit/ee8f3fb7a2ed74ee30ae3202707617e97f6641ff which makes Doxygen honour nested @cond . This revealed bad pairing of @cond / @endcond in our code, fixed by this commit.
Diffstat (limited to 'src/iso19111')
-rw-r--r--src/iso19111/crs.cpp1
-rw-r--r--src/iso19111/factory.cpp2
-rw-r--r--src/iso19111/io.cpp5
-rw-r--r--src/iso19111/operation/singleoperation.cpp1
-rw-r--r--src/iso19111/operation/transformation.cpp1
-rw-r--r--src/iso19111/util.cpp2
6 files changed, 10 insertions, 2 deletions
diff --git a/src/iso19111/crs.cpp b/src/iso19111/crs.cpp
index 575f6e2b..2ea8393c 100644
--- a/src/iso19111/crs.cpp
+++ b/src/iso19111/crs.cpp
@@ -5879,6 +5879,7 @@ BoundCRS::_identify(const io::AuthorityFactoryPtr &authorityFactory) const {
}
return !resMatchOfTransfToWGS84.empty() ? resMatchOfTransfToWGS84 : res;
}
+//! @endcond
// ---------------------------------------------------------------------------
diff --git a/src/iso19111/factory.cpp b/src/iso19111/factory.cpp
index f08e32b9..158ecdc5 100644
--- a/src/iso19111/factory.cpp
+++ b/src/iso19111/factory.cpp
@@ -8797,6 +8797,7 @@ std::list<datum::EllipsoidNNPtr> AuthorityFactory::createEllipsoidFromExisting(
}
return res;
}
+//! @endcond
// ---------------------------------------------------------------------------
@@ -9308,7 +9309,6 @@ AuthorityFactory::createCompoundCRSFromExisting(
// ---------------------------------------------------------------------------
-//! @cond Doxygen_Suppress
std::vector<operation::CoordinateOperationNNPtr>
AuthorityFactory::getTransformationsForGeoid(
const std::string &geoidName, bool usePROJAlternativeGridNames) const {
diff --git a/src/iso19111/io.cpp b/src/iso19111/io.cpp
index 67877206..ca5a3d97 100644
--- a/src/iso19111/io.cpp
+++ b/src/iso19111/io.cpp
@@ -866,6 +866,8 @@ void WKTFormatter::stopInversion() {
bool WKTFormatter::isInverted() const { return d->inversionStack_.back(); }
#endif
+//! @endcond
+
// ---------------------------------------------------------------------------
//! @cond Doxygen_Suppress
@@ -1411,6 +1413,7 @@ struct WKTParser::Private {
ConcatenatedOperationNNPtr
buildConcatenatedOperation(const WKTNodeNNPtr &node);
};
+//! @endcond
// ---------------------------------------------------------------------------
@@ -8867,6 +8870,8 @@ struct PROJStringParser::Private {
int iAxisSwap, bool ignorePROJAxis);
};
+//! @endcond
+
// ---------------------------------------------------------------------------
PROJStringParser::PROJStringParser() : d(internal::make_unique<Private>()) {}
diff --git a/src/iso19111/operation/singleoperation.cpp b/src/iso19111/operation/singleoperation.cpp
index 4dadfa40..99b70609 100644
--- a/src/iso19111/operation/singleoperation.cpp
+++ b/src/iso19111/operation/singleoperation.cpp
@@ -533,6 +533,7 @@ void OperationMethod::_exportToJSON(
formatID(formatter);
}
}
+//! @endcond
// ---------------------------------------------------------------------------
diff --git a/src/iso19111/operation/transformation.cpp b/src/iso19111/operation/transformation.cpp
index 36540242..a018a7b4 100644
--- a/src/iso19111/operation/transformation.cpp
+++ b/src/iso19111/operation/transformation.cpp
@@ -1477,7 +1477,6 @@ createApproximateInverseIfPossible(const Transformation *op) {
return nullptr;
}
-//! @endcond
// ---------------------------------------------------------------------------
diff --git a/src/iso19111/util.cpp b/src/iso19111/util.cpp
index 82d36458..f8ae9049 100644
--- a/src/iso19111/util.cpp
+++ b/src/iso19111/util.cpp
@@ -293,6 +293,8 @@ const BaseObjectNNPtr *PropertyMap::get(const std::string &key) const {
}
return nullptr;
}
+//! @endcond
+
// ---------------------------------------------------------------------------
//! @cond Doxygen_Suppress