From 7078ebf38299ad8cd714a5afdee767ab8ea82958 Mon Sep 17 00:00:00 2001 From: Daniel Larimer Date: Thu, 15 May 2014 14:07:19 -0400 Subject: [PATCH] expanding token chars --- 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 29c75ad..7be1620 100644 --- a/src/io/json.cpp +++ b/src/io/json.cpp @@ -119,7 +119,7 @@ namespace fc in.get(); return token.str(); default: - if( isalnum( c ) ) + if( isalnum( c ) || c == '_' || c == '-' || c == '.' || c == ':' ) { token << c; in.get();