Skip to content

Commit cfc1b4d

Browse files
authored
Merge pull request #1498 from chriselrod/patch-1
Add missing return
2 parents a965fa2 + 8a5f291 commit cfc1b4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/systems/alias_elimination.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const KEEP = typemin(Int)
44

55
function alias_eliminate_graph!(state::TransformationState)
66
mm = linear_subsys_adjmat(state)
7-
size(mm, 1) == 0 && nothing, mm # No linear subsystems
7+
size(mm, 1) == 0 && return nothing, mm # No linear subsystems
88

99
@unpack graph, var_to_diff = state.structure
1010

0 commit comments

Comments
 (0)