diff --git a/std/haxe/Int64Helper.hx b/std/haxe/Int64Helper.hx index 6b6af416a6f..1e78b958b07 100644 --- a/std/haxe/Int64Helper.hx +++ b/std/haxe/Int64Helper.hx @@ -123,7 +123,7 @@ class Int64Helper { /** The minimum `Int64` value. */ - public static var minValue:Int64 = Int64.not(maxValue); + public static var minValue:Int64 = Int64.complement(maxValue); /** The maximum `Int32` value with the type `Int64`. @@ -135,7 +135,7 @@ class Int64Helper { The minimum `Int32` value with the type `Int64`. This is handy for type comparison. */ - public static var minValue32:Int64 = Int64.not(maxValue32); + public static var minValue32:Int64 = Int64.complement(maxValue32); /** The maximum unsigned `Int32` value with the type `Int64`.