Skip to content

Commit 7c7fa61

Browse files
committed
[AST] NFC: Fix -Wextra-semi warning
1 parent 6a993dd commit 7c7fa61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/swift/AST/Decl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ class alignas(1 << DeclAlignInBits) Decl {
430430
/// Whether the typealias forwards perfectly to its underlying type.
431431
IsCompatibilityAlias : 1,
432432
/// Whether this was a global typealias synthesized by the debugger.
433-
IsDebuggerAlias : 1;
433+
IsDebuggerAlias : 1
434434
);
435435

436436
SWIFT_INLINE_BITFIELD(NominalTypeDecl, GenericTypeDecl, 1+1+1,

0 commit comments

Comments
 (0)