From 7d7339c49020e3487a22b50be5706e14a082572c Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:32:19 -0300 Subject: [PATCH] fix code --- src/rustint/core.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rustint/core.clj b/src/rustint/core.clj index c7548ce..9cbeaec 100644 --- a/src/rustint/core.clj +++ b/src/rustint/core.clj @@ -2164,7 +2164,7 @@ ; true ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defn compatibles? [rtype arg] - (let [rtypes (hash-map 'i64 integer?), func (get rtypes rtype)] + (let [rtypes (hash-map 'i64 integer?, 'f64 float?), func (get rtypes rtype)] (or (vector? arg) (func arg)) ) )