Skip to content

Commit 17c4099

Browse files
johnnychen94timholy
authored andcommitted
Remove N*f0 symbols (#121)
There's no Integer between 0 and 1/2, so these symbols are meaningless.
1 parent 5729a89 commit 17c4099

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/normed.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ typechar(::Type{X}) where {X <: Normed} = 'N'
1616
signbits(::Type{X}) where {X <: Normed} = 0
1717

1818
for T in (UInt8, UInt16, UInt32, UInt64)
19-
for f in 0:sizeof(T)*8
19+
for f in 1:sizeof(T)*8
2020
sym = Symbol(String(take!(showtype(_iotypealias, Normed{T,f}))))
2121
@eval begin
2222
const $sym = Normed{$T,$f}

0 commit comments

Comments
 (0)