diff options
| author | Matias Goldfeld <[email protected]> | 2021-01-28 00:50:21 -0500 |
|---|---|---|
| committer | Matias Goldfeld <[email protected]> | 2021-01-28 00:50:21 -0500 |
| commit | b499169e93e9f7bdd0f877a3cdf0247ec495abe1 (patch) | |
| tree | 52696cb3e1c16a84513fb90fe50c3738ce4539cb /lib/models/id/user_id_t.ml | |
| parent | More 32 bit fixes (diff) | |
| download | disml-b499169e93e9f7bdd0f877a3cdf0247ec495abe1.tar.xz disml-b499169e93e9f7bdd0f877a3cdf0247ec495abe1.zip | |
More Int64 refactors
Diffstat (limited to 'lib/models/id/user_id_t.ml')
| -rw-r--r-- | lib/models/id/user_id_t.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/models/id/user_id_t.ml b/lib/models/id/user_id_t.ml index cf1634a..214fa14 100644 --- a/lib/models/id/user_id_t.ml +++ b/lib/models/id/user_id_t.ml @@ -2,7 +2,7 @@ open Core type t = [ `User_id of Snowflake.t ] [@@deriving sexp]
-let compare (`User_id t) (`User_id t') = Int.compare t t'
+let compare (`User_id t) (`User_id t') = Int64.compare t t'
let of_yojson a : (t, string) result =
match Snowflake.of_yojson a with
|