Compare commits

...

2 Commits

Author SHA1 Message Date
nixo d18aceff14 Change required julia version 2019-06-30 11:48:53 +02:00
fundamental 3a97943c08 Remove 0.6 Support + Add "using Printf" 2018-09-09 12:42:20 -04:00
3 changed files with 4 additions and 5 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

@ -1 +1 @@
julia 0.7 julia 1.1

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]