Skip to content

Commit

Permalink
Fix a typo in lexer_raw
Browse files Browse the repository at this point in the history
  • Loading branch information
voodoos committed Apr 26, 2024
1 parent 884c078 commit 8eedc4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ocaml/preprocess/lexer_raw.mll
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ let hex_float_literal =
('.' ['0'-'9' 'A'-'F' 'a'-'f' '_']* )?
(['p' 'P'] ['+' '-']? ['0'-'9'] ['0'-'9' '_']* )?
let literal_modifier = ['G'-'Z' 'g'-'z']
let raw_ident_escape = "\#"
let raw_ident_escape = "\\#"


refill {fun k lexbuf -> Refill (fun () -> k lexbuf)}
Expand Down

0 comments on commit 8eedc4d

Please sign in to comment.