Fixed issue #39

This commit is contained in:
Hackerpilot 2013-07-26 10:31:55 -07:00
parent 75a802d51a
commit 722f38dd68
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ pure nothrow TokenType lookupTokenType(const string input)
return TokenType.Identifier;
}
string combineTokens(ref const Token[] tokens)
string combineTokens(const(Token)[] tokens)
{
auto app = appender!string();
foreach (t; tokens)