diff options
Diffstat (limited to 'src/wast-parser.h')
-rw-r--r-- | src/wast-parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wast-parser.h b/src/wast-parser.h index 4a449c7f..8c799b7f 100644 --- a/src/wast-parser.h +++ b/src/wast-parser.h @@ -82,7 +82,7 @@ class WastParser { TokenTypePair PeekPair(); // Returns true if the next token's type is equal to the parameter. - bool PeekMatch(TokenType); + bool PeekMatch(TokenType, size_t n = 0); // Returns true if the next token's type is '(' and the following token is // equal to the parameter. |