aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Lexer.mll
diff options
context:
space:
mode:
Diffstat (limited to 'cparser/Lexer.mll')
-rw-r--r--cparser/Lexer.mll2
1 files changed, 1 insertions, 1 deletions
diff --git a/cparser/Lexer.mll b/cparser/Lexer.mll
index b2b00e8c..871f2bf9 100644
--- a/cparser/Lexer.mll
+++ b/cparser/Lexer.mll
@@ -577,7 +577,7 @@ and singleline_comment = parse
let rec doConcat wide str =
try
match Queue.peek tokens with
- | STRING_LITERAL (wide', str', _) ->
+ | STRING_LITERAL (wide', str', loc) ->
ignore (Queue.pop tokens);
let (wide'', str'') = doConcat wide' str' in
if str'' <> []