From 8a8ff28221bbc4605fada6ba20b5f066b30c562f Mon Sep 17 00:00:00 2001 From: Daniel Larimer Date: Mon, 19 May 2014 16:59:01 -0400 Subject: [PATCH] adding '/' to token chars to support paths --- src/io/json.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/json.cpp b/src/io/json.cpp index 208406b..e96cb25 100644 --- a/src/io/json.cpp +++ b/src/io/json.cpp @@ -118,7 +118,7 @@ namespace fc in.get(); return token.str(); default: - if( isalnum( c ) || c == '_' || c == '-' || c == '.' || c == ':' ) + if( isalnum( c ) || c == '_' || c == '-' || c == '.' || c == ':' || c == '/' ) { token << c; in.get();