Skip to content

Commit 01cfddf

Browse files
committed
Fix soft scope ambiguity warning
1 parent d666c52 commit 01cfddf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/addition.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ for T in [Float64,Float32]
77
printstyled("Testing addition with eltype = $T\n", color=:blue)
88
M = convert(Array{T,2},[4. -2. -1.; -2. 5. -1.; -1. -1. 6.])
99
V = convert(Array{T,1},[1.5, 2.5, 2.0])
10-
X = convert(T,2.0)
10+
local X = convert(T,2.0)
1111

1212
pm1 = PDMat(M)
1313
pm2 = PDiagMat(V)

0 commit comments

Comments
 (0)