Skip to content
Snippets Groups Projects
Commit 246f1862 authored by Jan Frederik Engels's avatar Jan Frederik Engels :new_moon:
Browse files

Line-breaks for safety.

parent 9b8a1ebb
No related branches found
No related tags found
No related merge requests found
......@@ -216,14 +216,16 @@
CLASS (t_datetime), INTENT(in), target :: this
INTEGER(c_int) :: t_datetime_daysInEntireMonth
t_datetime_daysInEntireMonth = my_getnoofdaysinmonthdatetime(c_loc(this%dt))
call handle_errno(t_datetime_daysInEntireMonth == 0, 4 * 100 + 15, __FILE__, __LINE__)
call handle_errno(t_datetime_daysInEntireMonth == 0, 4 * 100 + 15, &
& __FILE__, __LINE__)
END FUNCTION t_datetime_daysInEntireMonth
FUNCTION t_datetime_daysInEntireYear(this)
CLASS (t_datetime), INTENT(in), target :: this
INTEGER(c_int) :: t_datetime_daysInEntireYear
t_datetime_daysInEntireYear = my_getnoofdaysinyeardatetime(c_loc(this%dt))
CALL handle_errno(t_datetime_daysInEntireYear == 0, 4 * 100 + 16, __FILE__, __LINE__)
CALL handle_errno(t_datetime_daysInEntireYear == 0, 4 * 100 + 16, &
& __FILE__, __LINE__)
END FUNCTION t_datetime_daysInEntireYear
FUNCTION t_datetime_elapsedDaysInYear(this)
......@@ -239,7 +241,8 @@
CLASS (t_datetime), INTENT(in), target :: this
INTEGER(c_int64_t) :: t_datetime_elapsedSecondsInMonth
t_datetime_elapsedSecondsInMonth = my_getnoofsecondselapsedinmonthdatetime(c_loc(this%dt))
CALL handle_errno(t_datetime_elapsedSecondsInMonth == -1, 4 * 100 + 18, __FILE__, __LINE__)
CALL handle_errno(t_datetime_elapsedSecondsInMonth == -1, 4 * 100 + 18, &
& __FILE__, __LINE__)
END FUNCTION t_datetime_elapsedSecondsInMonth
FUNCTION t_datetime_elapsedSecondsInDay(this)
......@@ -247,7 +250,8 @@
INTEGER(c_int64_t) :: t_datetime_elapsedSecondsInDay
t_datetime_elapsedSecondsInDay = my_getnoofsecondselapsedindaydatetime(c_loc(this%dt))
CALL handle_errno(t_datetime_elapsedSecondsInDay == -1, 4 * 100 + 19, __FILE__, __LINE__)
CALL handle_errno(t_datetime_elapsedSecondsInDay == -1, 4 * 100 + 19, &
& __FILE__, __LINE__)
END FUNCTION t_datetime_elapsedSecondsInDay
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment