Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/ContainerizationEXT4/Integer+Extensions.swift
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ extension UInt64 {
}

public static func / (lhs: Self, rhs: UInt32) -> UInt32 {
(lhs / UInt64(rhs)).lo
UInt32(lhs / UInt64(rhs))
}

public static func * (lhs: Self, rhs: UInt32) -> UInt64 {
Expand Down
Loading