Skip to content

Commit b47eedd

Browse files
committed
#2 - Remove Int as a builtin type
The Int type in Julia is a aliases to either Int64 or Int32 depending on computer architecture. And thus, when trying to define the class_of which receives Int we are actually either defining for Int64 or Int32 and thus redefining it, giving out an warning during precompilation
1 parent bc29f0f commit b47eedd

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/JOSPreDefinitions/BuiltInTypes.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ export _Exception, _TypeException, _IO,
1414
@defbuiltin _Int64(Int64)
1515
@defbuiltin _Int128(Int128)
1616

17-
@defbuiltin _Int(Int)
18-
1917
@defbuiltin _Bool(Bool)
2018

2119
@defbuiltin _Char(Char)

0 commit comments

Comments
 (0)