Skip to content

Commit 5ffdaac

Browse files
committed
fix ambiguity
1 parent 37c80c4 commit 5ffdaac

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "FinEtoolsFlexStructures"
22
uuid = "723391e6-6814-4d1d-921c-018f691214d8"
33
authors = ["Petr Krysl <pkrysl@ucsd.edu>"]
4-
version = "3.4.1"
4+
version = "3.4.2"
55

66
[deps]
77
Arpack = "7d9fca2a-8960-54d3-9f78-7d1dccf2cb97"

src/FEMMShellQ4RSModule.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ end
229229
Make a Q4RS FEMM from the integration domain, and a material.
230230
Default isoparametric method for computing the normais is used.
231231
"""
232-
function make(integdomain, material, mult_el_size = _mult_el_size)
232+
function make(integdomain, material, mult_el_size::F = _mult_el_size) where {F<:Function}
233233
return FEMMShellQ4RS(integdomain, material, mult_el_size)
234234
end
235235

@@ -239,7 +239,7 @@ end
239239
Make a Q4RS FEMM from the integration domain, a coordinate system to define the
240240
orientation of the normals, and a material.
241241
"""
242-
function make(integdomain, mcsys, material, mult_el_size = _mult_el_size)
242+
function make(integdomain, mcsys, material, mult_el_size::F = _mult_el_size) where {F<:Function}
243243
return FEMMShellQ4RS(integdomain, mcsys, material, mult_el_size)
244244
end
245245

0 commit comments

Comments
 (0)