Remove 0.6 Support + Add "using Printf"

master
fundamental 2018-09-09 12:34:17 -04:00
parent 8a39e8ca9e
commit 3a97943c08
2 changed files with 3 additions and 4 deletions

View File

@ -1,6 +1,5 @@
language: julia
julia:
- 0.6
julia:
- 0.7
- 1.0
- nightly

View File

@ -16,7 +16,7 @@
module OSC
using Base.Printf
using Printf
import Base: show, getindex
export OscMsg, path
@ -325,7 +325,7 @@ function showField(io::IO, msg::OscMsg, arg_id)
'T' true;
'F' false;
'I' Inf;
'N' Void]
'N' Nothing]
dict = Dict{Char, Any}(zip(Vector{Char}(map[:,1][:]),map[:,2][:]))
typeChar::Char = argType(msg, arg_id)
value = msg[arg_id]