gismo / gsElasticity

Elasticity solvers
13 stars 8 forks source link

Fixed ambiguous assemble() overrides #35

Open mmoelle1 opened 1 month ago

mmoelle1 commented 1 month ago

The assemble()’ function with default parameter leads to a compiler error with AppleClang about ambiguous functions since it is not clear if the empty-parameter variant of ‘assemble()’ from the base class should be used or the override from the deriving class with default parameter ‘false’. This commit fixes this ambiguity.