CPP: Clean up formatting in FormatLiteral.getEffectiveCharConversionChar somewhat.

This commit is contained in:
Geoffrey White
2019-02-27 16:05:13 +00:00
parent 9f9712047c
commit ac708a569e

View File

@@ -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
)
)
)
}