Skip to content

Commit

Permalink
Apply GMAO fix for intel compatibility going into version 2.26.1
Browse files Browse the repository at this point in the history
This fix was developed by Matt Thompson and Tom Clune, both at NASA GMAO.

Signed-off-by: Lizzie Lundgren <[email protected]>
  • Loading branch information
lizziel committed Jan 28, 2025
1 parent 9ad63ae commit bf78f40
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

### Fixed
- Fixed compiler bug encountered with certain versions of Intel compilers

### Added
- Add debug logger call to print out the name of the container being read from `ExtData.rc`
Expand Down
5 changes: 3 additions & 2 deletions generic/AbstractComponent.F90
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
module mapl_AbstractComponent
use pFlogger, only: t_Logger => Logger
implicit none
private

Expand Down Expand Up @@ -96,7 +97,7 @@ subroutine i_RunChild(this, name, clock, phase, unusable, rc)
end subroutine i_RunChild

subroutine i_SetLogger(this, logger)
use pFlogger, only: t_Logger => Logger
import t_Logger
import AbstractComponent
implicit none
class(AbstractComponent), intent(inout) :: this
Expand All @@ -105,7 +106,7 @@ subroutine i_SetLogger(this, logger)
end subroutine i_SetLogger

function i_GetLogger(this) result(logger)
use pFlogger, only: t_Logger => Logger
import t_Logger
import AbstractComponent
implicit none
class(t_Logger), pointer :: logger
Expand Down

0 comments on commit bf78f40

Please sign in to comment.