Skip to content

Commit ffd48a8

Browse files
committed
syntax fix for Base.:(==)
1 parent 625c469 commit ffd48a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
version:
15-
- '1.6'
15+
- 'min'
1616
- '1' # automatically expands to the latest stable 1.x release of Julia
1717
os:
1818
- ubuntu-latest

src/tridiag.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ function Base.:\(B::T,A::SkewHermTridiagonal) where {T<:Complex}
312312
end
313313
end
314314

315-
function Base. ==(A::SkewHermTridiagonal, B::SkewHermTridiagonal)
315+
function Base.:(==)(A::SkewHermTridiagonal, B::SkewHermTridiagonal)
316316
if A.dvim !== nothing && B.dvim!== nothing
317317
return (A.ev==B.ev) &&(A.dvim==B.dvim)
318318
elseif A.dvim === nothing && B.dvim === nothing

0 commit comments

Comments
 (0)