The readVarint signature with default argument was causing a method overwrite warning during precompilation.
[ Info: Precompiling Thrift [8d9c9c80-f77e-5080-9541-c6f69d204e22]
WARNING: Method definition readVarint(IO) where {S<:Integer} in module Thrift at /home/tan/.julia/dev/Thrift/src/utils.jl:68 overwritten at /home/tan/.julia/dev/Thrift/src/utils.jl:69.
** incremental compilation may be fatally broken for this module **
The
readVarint
signature with default argument was causing a method overwrite warning during precompilation.Removing the default value to prevent it.
ref: #70
cc: @tk3369