aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/grids.cpp3
-rw-r--r--src/iso19111/datum.cpp4
2 files changed, 4 insertions, 3 deletions
diff --git a/src/grids.cpp b/src/grids.cpp
index 58183e9e..9dc1723e 100644
--- a/src/grids.cpp
+++ b/src/grids.cpp
@@ -98,7 +98,8 @@ bool ExtentAndRes::intersects(const ExtentAndRes &other) const {
Grid::Grid(const std::string &nameIn, int widthIn, int heightIn,
const ExtentAndRes &extentIn)
- : m_name(nameIn), m_width(widthIn), m_height(heightIn), m_extent(extentIn) {}
+ : m_name(nameIn), m_width(widthIn), m_height(heightIn), m_extent(extentIn) {
+}
// ---------------------------------------------------------------------------
diff --git a/src/iso19111/datum.cpp b/src/iso19111/datum.cpp
index 6f115908..337b74a8 100644
--- a/src/iso19111/datum.cpp
+++ b/src/iso19111/datum.cpp
@@ -1381,8 +1381,8 @@ bool GeodeticReferenceFrame::hasEquivalentNameToUsingAlias(
"geodetic_datum", std::string());
const char *otherName = other->nameStr().c_str();
for (const auto &aliasResult : aliasesResult) {
- if (metadata::Identifier::isEquivalentName(otherName,
- aliasResult.c_str())) {
+ if (metadata::Identifier::isEquivalentName(
+ otherName, aliasResult.c_str())) {
return true;
}
}