Added mass and remove unecesary private (#41)
Co-authored-by: Zachary Levy <zachary@sunforge.is> Reviewed-on: #41
This commit was merged in pull request #41.
This commit is contained in:
@@ -7,7 +7,7 @@ Liters_Per_Minute :: struct($V: typeid) where intrinsics.type_is_numeric(V) {
|
||||
v: V,
|
||||
}
|
||||
|
||||
@(private = "file")
|
||||
// Prefer the to_gallons_per_minute procedure group.
|
||||
liters_per_minute_to_gallons_per_minute :: #force_inline proc "contextless" (
|
||||
liters_per_minute: Liters_Per_Minute($V),
|
||||
) -> Gallons_Per_Minute(V) where intrinsics.type_is_float(V) {
|
||||
@@ -19,7 +19,7 @@ Gallons_Per_Minute :: struct($V: typeid) where intrinsics.type_is_numeric(V) {
|
||||
v: V,
|
||||
}
|
||||
|
||||
@(private = "file")
|
||||
// Prefer the to_liters_per_minute procedure group.
|
||||
gallons_per_minute_to_liters_per_minute :: #force_inline proc "contextless" (
|
||||
gallons_per_minute: Gallons_Per_Minute($V),
|
||||
) -> Liters_Per_Minute(V) where intrinsics.type_is_float(V) {
|
||||
|
||||
Reference in New Issue
Block a user