Re: [swift-dev] Fixing complation condition processing

2017-03-13 Thread Robert Widmann via swift-dev
I think the source breakage here, if any in actual codebases, is minor enough that the patch could go through. ~Robert Widmann > On Mar 8, 2017, at 2:11 AM, rintaro ishizaki via swift-dev > wrote: > > Hi all, > > I'm fixing #if condition processing in this PR > https://github.com/apple/swif

[swift-dev] Fixing complation condition processing

2017-03-07 Thread rintaro ishizaki via swift-dev
Hi all, I'm fixing #if condition processing in this PR https://github.com/apple/swift/pull/7955 It resolves these issues: *A) SR-3663 : Precedence of '&&' and '||' and short-circuit rule of them.* #if false || true && false print("true")#endif This use