Skip to content

Commit

Permalink
Update topology.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
chriselrod authored Feb 10, 2022
1 parent a4e4f08 commit de28b20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/topology.jl
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ end
cache_linesize(::Union{Val{$N},StaticInt{$N}}) = StaticInt{$(c.linesize)}()
cache_associativity(::Union{Val{$N},StaticInt{$N}}) = StaticInt{$(c.associativity)}()
cache_type(::Union{Val{$N},StaticInt{$N}}) = Val{$(c.type === nothing ? nothing : QuoteNode(c.type))}()
cache_inclusive(::Union{Val{$N},StaticInt{$N}}) = $(c.inclusive ? :True : :False)()
cache_inclusive(::Union{Val{$N},StaticInt{$N}}) = $(c.inclusive isa Bool && c.inclusive ? :True : :False)()
end
nothing
end
Expand Down

0 comments on commit de28b20

Please sign in to comment.