Ole Begemann
Ole Begemann
This test fails on Linux: ```swift func testWithNonBaseUnits() { let factor1 = Measurement(value: 100, unit: UnitArea.squareCentimeters) let factor2 = Measurement(value: 10, unit: UnitLength.millimeters) let actual: Measurement = factor1 * factor2...
[The bug I reported](http://www.openradar.me/27556581) about inconsistent behavior of XCTest assertions with `Measurement` values is fixed in Xcode 8 GM, so I can probably remove my custom test assertions.
This currently produces an error because `UnitForce` already conforms to `UnitProduct` for _force = mass × acceleration_ and we cannot add another conformance to the same protocol: ``` swift ///...
I'd like to have a script that lets me spin up a few Docker containers (one per supported Swift version) and run the tests on Linux with a single command....
Make some Swift functions public so that the linker can see them when linking CEcho. If they're not public, release builds would fail with undefined symbols errors: ``` Undefined symbols...
The computation of the UIColor used integer division where it should use floating-point division. This caused all RGB values < 255 to become 0. In addition, there was a typo...
The UI often doesn't show all layout steps (some are missing), or the table is (almost) completely empty. It's not 100% consistent, but the display is incorrect most of the...