Skip to content

Commit

Permalink
change range of symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewcooke committed Aug 16, 2016
1 parent 0fdcd12 commit a0c0da6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/gml/GML.jl
Expand Up @@ -7,7 +7,10 @@ using Compat
export parse_raw, parse_dict, GMLError


Symbol_ = VERSION >= v"0.4-" ? Symbol : symbol
# symbol required in 0.3
# both work in 0.4
# symbol gives deprecation warning in 0.5
Symbol_ = VERSION >= v"0.5-" ? Symbol : symbol


function mk_parser(string_input)
Expand Down

0 comments on commit a0c0da6

Please sign in to comment.