Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
fix no return in non-void scope error
- Loading branch information
Showing
with
2 additions
and
0 deletions.
-
+2
−0
src/core/qgstemporalutils.cpp
|
@@ -187,6 +187,8 @@ QDateTime QgsTemporalUtils::calculateFrameTime( const QDateTime &start, const lo |
|
|
case QgsUnitTypes::TemporalUnit::TemporalCenturies: |
|
|
return start.addYears( 100 * frame * interval.originalDuration() ); |
|
|
break; |
|
|
default: |
|
|
return start; |
|
|
} |
|
|
} |
|
|
} |
|
|