adding '/' to token chars to support paths
This commit is contained in:
parent
ed508141a6
commit
8a8ff28221
1 changed files with 1 additions and 1 deletions
|
|
@ -118,7 +118,7 @@ namespace fc
|
||||||
in.get();
|
in.get();
|
||||||
return token.str();
|
return token.str();
|
||||||
default:
|
default:
|
||||||
if( isalnum( c ) || c == '_' || c == '-' || c == '.' || c == ':' )
|
if( isalnum( c ) || c == '_' || c == '-' || c == '.' || c == ':' || c == '/' )
|
||||||
{
|
{
|
||||||
token << c;
|
token << c;
|
||||||
in.get();
|
in.get();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue