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();
|
||||
return token.str();
|
||||
default:
|
||||
if( isalnum( c ) )
|
||||
if( isalnum( c ) || c == '_' || c == '-' || c == '.' || c == ':' )
|
||||
{
|
||||
token << c;
|
||||
in.get();
|
||||
|
|
|
|||
Loading…
Reference in a new issue