expanding token chars
This commit is contained in:
parent
c27ea9ba13
commit
7078ebf382
1 changed files with 1 additions and 1 deletions
|
|
@ -119,7 +119,7 @@ namespace fc
|
||||||
in.get();
|
in.get();
|
||||||
return token.str();
|
return token.str();
|
||||||
default:
|
default:
|
||||||
if( isalnum( c ) )
|
if( isalnum( c ) || c == '_' || c == '-' || c == '.' || c == ':' )
|
||||||
{
|
{
|
||||||
token << c;
|
token << c;
|
||||||
in.get();
|
in.get();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue