mirror of
https://github.com/github/codeql.git
synced 2026-04-30 11:15:13 +02:00
CPP: Clean up formatting in FormatLiteral.getEffectiveCharConversionChar somewhat.
This commit is contained in:
@@ -683,7 +683,13 @@ class FormatLiteral extends Literal {
|
||||
(len = "l" and result = "C") or
|
||||
(len = "w" and result = "C") or
|
||||
(len = "h" and result = "c") or
|
||||
(len != "l" and len != "w" and len != "h" and (result = "c" or result = "C") and (if isWideCharDefault() then result != conv else result = conv))
|
||||
(
|
||||
len != "l" and len != "w" and len != "h" and
|
||||
(result = "c" or result = "C") and
|
||||
(
|
||||
if isWideCharDefault() then result != conv else result = conv
|
||||
)
|
||||
)
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user