Skip to content
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,9 @@ function get_global_mesh_map( self, &
logical(l_def) :: global_mesh_map_exists

! Pointer to linked list - used for looping through the list
type(linked_list_item_type),pointer :: loop => null()
type(linked_list_item_type),pointer :: loop

nullify(loop)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this instead be, (for consistency)? : loop => null()

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Question for CO too Ricky Wong (@mo-rickywong)

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks Benjamin Went (@MetBenjaminWent), agreed, have pushed this change now.

global_mesh_map => null()

global_mesh_map_id = generate_global_mesh_map_id( source_global_mesh_id, &
Expand Down
Loading