Skip to content

Commit

Permalink
Merge pull request #151 from Goddard-Fortran-Ecosystem/fix-510
Browse files Browse the repository at this point in the history
Fix typo in undef'ing `__algorithm_iterator` in map
  • Loading branch information
tclune authored Nov 16, 2021
2 parents ab34e57 + 5ff54ac commit 709c211
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if (COMMAND cmake_policy)
endif (COMMAND cmake_policy)

project (GFTL
VERSION 1.5.2
VERSION 1.5.3
LANGUAGES NONE)

if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
Expand Down
6 changes: 6 additions & 0 deletions ChangeLog.MD
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
- On Windows M4 program is now downloaded from SourceForge during CMake configuration
if it is not found.

## [1.5.3] - 2021-11-16

### Fixed

- Fixed typo in `#undef` that was creating noisy compiler warnings. (@ZedThree)

## [1.5.2] - 2021-11-14

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion include/v2/map/procedures.inc
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@
#define __algorithm_iterator __map_iterator
#include "algorithms/procedures.inc"
#undef __algorithm_container
#undef __algorithm_riterator
#undef __algorithm_iterator
#undef __algorithm_guard
#include "parameters/T/undef_algorithm_T.inc"

Expand Down
2 changes: 1 addition & 1 deletion include/v2/map/specification.inc
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
#define __algorithm_iterator __map_iterator
#include "algorithms/specification.inc"
#undef __algorithm_container
#undef __algorithm_riterator
#undef __algorithm_iterator
#undef __algorithm_guard
#include "parameters/T/undef_algorithm_T.inc"

Expand Down

0 comments on commit 709c211

Please sign in to comment.