Skip to content

Commit

Permalink
Merge pull request #403 from quokkaKyu/release/1.1
Browse files Browse the repository at this point in the history
add 'final' keyword to class
  • Loading branch information
lorentey authored Jul 18, 2024
2 parents 2db08b3 + 6b8276e commit 293314a
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 293314a

Please sign in to comment.