Skip to content

Commit

Permalink
Create aliases for uppercase i in unsigned integer types
Browse files Browse the repository at this point in the history
Fix #16
Ref: #8907
  • Loading branch information
ivarne committed Nov 6, 2014
1 parent 0efce72 commit 8211e38
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Compat.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@ module Compat

using Base.Meta

if VERSION < v"0.4.0-dev+1419"
export UInt, UInt8, UInt16, UInt32, UInt64, UInt128
const UInt = Uint
const UInt8 = Uint8
const UInt16 = Uint16
const UInt32 = Uint32
const UInt64 = Uint64
const UInt128 = Uint128
end

if VERSION < v"0.4.0-dev+1387"
typealias AbstractString String
export AbstractString
Expand Down

0 comments on commit 8211e38

Please sign in to comment.