Skip to content

Commit acfb3a3

Browse files
Merge pull request #31 from JuliaDiffEq/fbot/deps
Fix deprecations
2 parents ffc0a95 + b92629a commit acfb3a3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/FEniCS.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ macro fenicsclass(name::Symbol, base1::Symbol=:fenicsobject)
1919
abstract type
2020
$name <: $base1
2121
end
22-
immutable $impl <: $name
22+
struct $impl <: $name
2323
pyobject::PyObject
2424
end
2525
$(name)(pyobject::PyObject) = $impl(pyobject)

src/jmisc.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ DOLFIN_SQRT_EPS()=fenics.DOLFIN_SQRT_EPS
3232
export DOLFIN_PI, DOLFIN_EPS, DOLFIN_SQRT_EPS
3333

3434

35-
immutable MPI_Comm <: fenicsobject
35+
struct MPI_Comm <: fenicsobject
3636
pyobject::PyObject
3737
end
3838

0 commit comments

Comments
 (0)