Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libmtime
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
icon-libraries
libmtime
Commits
916172a3
Commit
916172a3
authored
5 years ago
by
Luis Kornblueh
Browse files
Options
Downloads
Patches
Plain Diff
Add minor fixing resolving confusion of gcc6
parent
42ac140d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
examples/example_hl.f90
+1
-1
1 addition, 1 deletion
examples/example_hl.f90
examples/mo_event_group.f90
+7
-1
7 additions, 1 deletion
examples/mo_event_group.f90
src/libmtime_hl.f90
+1
-2
1 addition, 2 deletions
src/libmtime_hl.f90
src/mtime_constants.f90
+0
-3
0 additions, 3 deletions
src/mtime_constants.f90
with
9 additions
and
7 deletions
examples/example_hl.f90
+
1
−
1
View file @
916172a3
...
...
@@ -2,7 +2,7 @@ PROGRAM example
USE
,
INTRINSIC
::
iso_c_binding
,
ONLY
:
c_char
,
c_int64_t
,
c_double
USE
mtime_hl
USE
mo_event_group
,
ONLY
:
t_eventGroup
USE
mo_event_group
,
ONLY
:
t_eventGroup
,
max_groupname_str_len
IMPLICIT
NONE
...
...
This diff is collapsed.
Click to expand it.
examples/mo_event_group.f90
+
7
−
1
View file @
916172a3
MODULE
mo_event_group
USE
mtime_hl
,
ONLY
:
max_groupname_str_len
,
t_event
USE
mtime_hl
,
ONLY
:
t_event
USE
mo_generic_linked_list
,
ONLY
:
t_generic_linked_list
,
t_generic_linked_list_item
IMPLICIT
NONE
PRIVATE
INTEGER
,
PARAMETER
::
MAX_GROUPNAME_STR_LEN
=
132
TYPE
,
EXTENDS
(
t_generic_linked_list_item
)
::
t_event_item
TYPE
(
t_event
),
POINTER
::
event
CONTAINS
...
...
@@ -39,6 +43,8 @@ MODULE mo_event_group
INTEGER
::
event_group_id
=
0
PUBLIC
::
t_eventGroup
,
t_event_item
,
MAX_GROUPNAME_STR_LEN
CONTAINS
! ================================================================================
...
...
This diff is collapsed.
Click to expand it.
src/libmtime_hl.f90
+
1
−
2
View file @
916172a3
...
...
@@ -58,8 +58,7 @@ MODULE mtime_hl
!
PUBLIC
::
divisionquotienttimespan
PUBLIC
::
MAX_DATETIME_STR_LEN
,
MAX_TIMEDELTA_STR_LEN
,
MAX_CALENDAR_STR_LEN
PUBLIC
::
MAX_EVENTNAME_STR_LEN
,
MAX_GROUPNAME_STR_LEN
,
MAX_REPETITION_STR_LEN
PUBLIC
::
MAX_MTIME_ERROR_STR_LEN
PUBLIC
::
MAX_EVENTNAME_STR_LEN
,
MAX_REPETITION_STR_LEN
,
MAX_MTIME_ERROR_STR_LEN
PUBLIC
::
no_of_sec_in_a_day
,
no_of_sec_in_a_hour
,
no_of_sec_in_a_minute
,
&
&
no_of_ms_in_a_hour
,
no_of_ms_in_a_minute
,
no_of_ms_in_a_day
,
&
&
no_of_ms_in_a_second
...
...
This diff is collapsed.
Click to expand it.
src/mtime_constants.f90
+
0
−
3
View file @
916172a3
...
...
@@ -49,9 +49,6 @@ module mtime_constants
integer
,
parameter
::
max_eventname_str_len
=
132
integer
,
parameter
::
max_event_str_len
=
512
!> provides a string length for toString
integer
,
parameter
::
max_groupname_str_len
=
132
integer
,
parameter
::
max_repetition_str_len
=
132
contains
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment