diff --git a/src/core/proj/qgscoordinatereferencesystem.cpp b/src/core/proj/qgscoordinatereferencesystem.cpp index 2c04de02812e..d86d08f69712 100644 --- a/src/core/proj/qgscoordinatereferencesystem.cpp +++ b/src/core/proj/qgscoordinatereferencesystem.cpp @@ -1303,6 +1303,7 @@ QString QgsCoordinateReferenceSystem::toProj() const Qgis::CrsType QgsCoordinateReferenceSystem::type() const { + // NOLINTBEGIN(bugprone-branch-clone) switch ( d->mProjType ) { case PJ_TYPE_UNKNOWN: @@ -1353,6 +1354,7 @@ Qgis::CrsType QgsCoordinateReferenceSystem::type() const return Qgis::CrsType::Other; } return Qgis::CrsType::Unknown; + // NOLINTEND(bugprone-branch-clone) } bool QgsCoordinateReferenceSystem::isGeographic() const