Skip to content

Commit

Permalink
conform to UInt64Initializable
Browse files Browse the repository at this point in the history
  • Loading branch information
tanner0101 committed Jun 16, 2018
1 parent 1ad690c commit 5c9d55c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Sources/FluentMySQL/MySQLDatabase+QuerySupporting.swift
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,9 @@ internal protocol UInt64Initializable {
init(_ uint64: UInt64)
}

extension Int: UInt64Initializable { }
extension Int32: UInt64Initializable { }
extension Int64: UInt64Initializable { }
extension UInt32: UInt64Initializable { }
extension UInt64: UInt64Initializable { }
extension UInt: UInt64Initializable { }

0 comments on commit 5c9d55c

Please sign in to comment.