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 language: julia
julia: julia:
- 0.6
- 0.7 - 0.7
- 1.0 - 1.0
- nightly - nightly

View File

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