From d8de03127e6db5d73fabfbc864edce18be052eb3 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:31:04 -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 5780435..c7548ce 100644 --- a/src/rustint/core.clj +++ b/src/rustint/core.clj @@ -2165,7 +2165,7 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defn compatibles? [rtype arg] (let [rtypes (hash-map 'i64 integer?), func (get rtypes rtype)] - (func arg) + (or (vector? arg) (func arg)) ) )