Skip to content

Commit

Permalink
remove overwriting sigs
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreySarnoff authored Dec 23, 2016
1 parent 4a94d8f commit 0767a11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/type.jl
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ ReadableNumStyle{S<:Signed}(
idigs::S, ibtwn::Char, rdigs::S=FDIGS%S, rbtwn::Char=FBTWN, fracpt::Char=FRACPOINT
) =
ReadableNumStyle( idigs%Int32, rdigs%Int32, ibtwn, rbtwn, fracpt )
ReadableNumStyle{I<:Integer}(
ibtwn::Char, idigs::I, rbtwn::Char=FBTWN, rdigs::I=FDIGS%I, fracpt::Char=FRACPOINT
ReadableNumStyle{S<:Signed}(
ibtwn::Char, idigs::S, rbtwn::Char=FBTWN, rdigs::S=FDIGS%S, fracpt::Char=FRACPOINT
) =
ReadableNumStyle(idigs, rdigs, ibtwn, rbtwn, fracpt)

Expand Down

0 comments on commit 0767a11

Please sign in to comment.