Skip to content

Commit

Permalink
fix invalidations from loading LoopVectorization.jl (#1028)
Browse files Browse the repository at this point in the history
  • Loading branch information
ranocha authored Dec 20, 2022
1 parent 205518d commit 02a8771
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/properties.jl
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ function class_setproperty!(::Type{FileAccessProperties}, p::Properties, name::S
name === :libver_bounds ? set_libver_bounds!(p, val) :
name === :meta_block_size ? API.h5p_set_meta_block_size(p, val) :
# deprecated
name === :fapl_mpio ? (depwarn("The `fapl_mpio` property is deprecated, use `driver=HDF5.Drivers.MPIO(...)` instead.", :fapl_mpio); p.driver = Drivers.MPIO(val...)) :
name === :fapl_mpio ? (depwarn("The `fapl_mpio` property is deprecated, use `driver=HDF5.Drivers.MPIO(...)` instead.", :fapl_mpio); Drivers.set_driver!(p, Drivers.MPIO(val...))) :
class_setproperty!(superclass(FileAccessProperties), p, name, val)
end

Expand Down

0 comments on commit 02a8771

Please sign in to comment.