Skip to content

Commit

Permalink
Merge branch 'hotfix/0.28.1'
Browse files Browse the repository at this point in the history
* hotfix/0.28.1:
  Version 0.28.1
  Fix ambiguous call to std::min
  • Loading branch information
wdeconinck committed Mar 14, 2022
2 parents 3901c05 + ad12f73 commit 2575ca3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

## [Unreleased]

## [0.28.1] - 2021-03-14
### Fixed
- Fix compilation for GNU 7.3

## [0.28.0] - 2021-03-02
### Added
- Assignment of ArrayView from ArrayView
Expand Down Expand Up @@ -341,6 +345,7 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
## 0.13.0 - 2018-02-16

[Unreleased]: https://github.com/ecmwf/atlas/compare/master...develop
[0.28.1]: https://github.com/ecmwf/atlas/compare/0.28.0...0.28.1
[0.28.0]: https://github.com/ecmwf/atlas/compare/0.27.0...0.28.0
[0.27.0]: https://github.com/ecmwf/atlas/compare/0.26.0...0.27.0
[0.26.0]: https://github.com/ecmwf/atlas/compare/0.25.0...0.26.0
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.28.0
0.28.1
2 changes: 1 addition & 1 deletion src/atlas/meshgenerator/detail/CubedSphereMeshGenerator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ void CubedSphereMeshGenerator::generate_mesh(const CubedSphereGrid& csGrid, cons
// non-null local cell pointer.
if (globalCell.localPtr) {
isGhost = true;
halo = std::min(halo, globalCell.localPtr->halo);
halo = std::min<idx_t>(halo, globalCell.localPtr->halo);
}
}
}
Expand Down

0 comments on commit 2575ca3

Please sign in to comment.