Skip to content

Commit

Permalink
fix line in cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabrice Le Fessant committed Aug 25, 2021
1 parent 16a8ac1 commit ec212e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solidity-parser/solidity_lexer.mll
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ rule token = parse
| "#" [' ' '\t']* (['0'-'9']+ as num) [' ' '\t']*
("\"" ([^ '\010' '\013' '"' ] * as name) "\"")?
[^ '\010' '\013'] * newline
{ update_loc lexbuf name (int_of_string num - 1) true 0;
{ update_loc lexbuf name (int_of_string num) true 0;
token lexbuf }

| "/*" { multiline_comment lexbuf ; token lexbuf }
Expand Down

0 comments on commit ec212e4

Please sign in to comment.