Skip to content
This repository was archived by the owner on May 4, 2019. It is now read-only.

Commit 4b0a0f6

Browse files
committed
fix whitespace
1 parent 921b65b commit 4b0a0f6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/indexing.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,14 +109,14 @@ else
109109
end
110110

111111
function Base.checkbounds(::Type{Bool}, sz::Int, I::NullableVector{Bool})
112-
anynull(I) && throw(NullException())
112+
anynull(I) && throw(NullException())
113113
length(I) == sz
114-
end
114+
end
115115

116116
function Base.checkbounds{T<:Real}(::Type{Bool}, sz::Int, I::NullableArray{T})
117117
inbounds = true
118-
anynull(I) && throw(NullException())
119-
for i in 1:length(I)
118+
anynull(I) && throw(NullException())
119+
for i in 1:length(I)
120120
@inbounds v = unsafe_getvalue_notnull(I, i)
121121
inbounds &= checkbounds(Bool, sz, v)
122122
end

0 commit comments

Comments
 (0)