Skip to content

Commit c0f3d8d

Browse files
committed
Fix broken build on ARM
There was a @_transparent extension lurking behind an #if, and CI pull request testing doesn't build the standard library on ARM.
1 parent 07ec69f commit c0f3d8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/core/FloatingPointTypes.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,8 +742,8 @@ extension ${Self} : _ExpressibleByBuiltinFloatLiteral {
742742
#else
743743

744744
% builtinFloatLiteralBits = 64
745-
@_transparent
746745
extension ${Self} : _ExpressibleByBuiltinFloatLiteral {
746+
@_transparent
747747
public
748748
init(_builtinFloatLiteral value: Builtin.FPIEEE${builtinFloatLiteralBits}) {
749749
% if bits == builtinFloatLiteralBits:

0 commit comments

Comments
 (0)