Skip to content

Commit 996ff7f

Browse files
authored
formatting (indentation, etc.)
1 parent 1886920 commit 996ff7f

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

stdlib/public/core/FloatingPointTypes.swift.gyb

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1726,17 +1726,19 @@ extension ${Self} {
17261726

17271727
% if bits == 80:
17281728
#else
1729+
17291730
${SelfDocComment}
17301731
@_fixed_layout
17311732
@available(*, unavailable, message: "available only #if !os(Windows) && (arch(i386) || arch(x86_64))")
17321733
public struct ${Self} {
1733-
/// Creates a value initialized to zero.
1734-
@_inlineable // FIXME(sil-serialize-all)
1735-
@_transparent
1736-
public init() {
1737-
fatalError("${Self} is not available")
1738-
}
1734+
/// Creates a value initialized to zero.
1735+
@_inlineable // FIXME(sil-serialize-all)
1736+
@_transparent
1737+
public init() {
1738+
fatalError("${Self} is not available")
1739+
}
17391740
}
1741+
17401742
#endif
17411743
% end
17421744
% end # for bits in all_floating_point_types

0 commit comments

Comments
 (0)