Skip to content
Open
Show file tree
Hide file tree
Changes from all 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