Skip to content

Commit c249369

Browse files
authored
fix: correct LocalizedError conformance (#13895)
1 parent 1f1f308 commit c249369

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FirebaseCore/Internal/Sources/HeartbeatLogging/RingBuffer.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ struct RingBuffer<Element>: Sequence {
2222
private var tailIndex: Array<Element?>.Index
2323

2424
/// Error types for `RingBuffer` operations.
25-
enum Error: LocalizedError {
25+
enum Error: Swift.Error {
2626
case outOfBoundsPush(pushIndex: Array<Element?>.Index, endIndex: Array<Element?>.Index)
2727

2828
var errorDescription: String {

0 commit comments

Comments
 (0)