Skip to content

Commit 0108d2e

Browse files
authored
Merge pull request #318 from B2R2-org/315-lint-fix-double-newline-detection
[Lint] Fix double newlines
2 parents 2042f73 + 5c817ac commit 0108d2e

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/Assembly/ARM32/Assembler.fs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ type Assembler(startAddress: Addr) =
8989
let betweenCurlyBraces s =
9090
s |> skipWhitespaces |> between (pchar '{') (pchar '}')
9191

92-
9392
let alphanumericWithUnderscore s = Char.IsLetterOrDigit s || s = '_'
9493

9594
let pId = many1Satisfy alphanumericWithUnderscore

src/FrontEnd/NameMangling/ItaniumDemangler.fs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,6 @@ type ItaniumDemangler() =
229229
((many1CharsTill (letter <|> digit) (pchar 'E')) |>> Name)
230230
|>> Literal
231231

232-
233232
let pCallOfset =
234233
(pchar 'h' .>> opt (pchar 'n') .>> pint32 .>> pchar '_')
235234
<|> (pchar 'v' .>> opt (pchar 'n') .>> pint32 .>> pchar '_'

0 commit comments

Comments
 (0)