Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix/#250 unlimited vector on gcc13 #251

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 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
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.15.0
VERSION 1.15.1
LANGUAGES NONE)

if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
Expand Down
5 changes: 5 additions & 0 deletions ChangeLog.MD
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

### Fixed

## [1.15.1] - 2025-01-31

### Fixed

- Workaround for gcc for unlimited vector. (Issue #250)

## [1.15.0] - 2025-01-31

Expand Down
2 changes: 1 addition & 1 deletion tests/vector/Test_Vector.m4
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module Test_{}_type()Vector
__T_declare_component__ :: tmp

define({ASSERT},{
tmp = {$1}
__T_copy__(tmp,{$1})
ifelse(_type(),{Foo},@assertTrue(tmp=={$2}),
_type(),{FooPoly},@assertTrue(tmp=={$2}),
_type(),{AbstractBar},@assertTrue(tmp=={$2}),
Expand Down
Loading