1
0
mirror of https://github.com/mastodon/mastodon-ios.git synced 2025-02-03 18:57:46 +01:00

16 lines
237 B
Swift

//
// CGSize.swift
//
//
// Created by Jed Fox on 2022-12-20.
//
import Foundation
extension CGSize: Hashable {
public func hash(into hasher: inout Hasher) {
hasher.combine(width)
hasher.combine(height)
}
}