Skip to content

Commit bd70d73

Browse files
authored
Merge pull request #86 from gaika/patch-1
.' operator is gone in Julia 1.0
2 parents e8bd6b1 + 5a3e276 commit bd70d73

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/utils.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,8 +387,7 @@ function resyntax(ex)
387387
setfield!(x_, :f_, v_) => :($x.$f = $v)
388388
getindex(x_, i__) => :($x[$(i...)])
389389
tuple(xs__) => :($(xs...),)
390-
ctranspose(x_) => :($x')
391-
transpose(x_) => :($x.')
390+
adjoint(x_) => :($x')
392391
_ => x
393392
end
394393
end

0 commit comments

Comments
 (0)