Skip to content

Commit

Permalink
add 'final' keyword to class
Browse files Browse the repository at this point in the history
  • Loading branch information
quokkaKyu committed Jul 15, 2024
1 parent 3d2dc41 commit 6b8276e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/DequeModule/_DequeBuffer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

@_fixed_layout
@usableFromInline
internal class _DequeBuffer<Element>: ManagedBuffer<_DequeBufferHeader, Element> {
internal final class _DequeBuffer<Element>: ManagedBuffer<_DequeBufferHeader, Element> {
@inlinable
deinit {
self.withUnsafeMutablePointers { header, elements in
Expand Down

0 comments on commit 6b8276e

Please sign in to comment.