Skip to content
Merged
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
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Minor generalisation of `return_value` for `LinearCombinationMap`. Since PR[#1298](https://github.com/gridap/Gridap.jl/pull/1298).

## [0.20.6] - 2026-05-05

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/Fields/FieldArrays.jl
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ end
return TT
end

function return_value(k::LinearCombinationMap{<:Integer},v::AbstractVector,fx::AbstractVector)
function return_value(k::LinearCombinationMap{<:Integer},v::AbstractArray,fx::AbstractVector)
T = linear_combination_eltype(v,fx)
return zero(T)
end
Expand Down
Loading