Skip to content

Commit

Permalink
fix abs dynamic warning (#327)
Browse files Browse the repository at this point in the history
  • Loading branch information
TiLogic authored Nov 23, 2024
1 parent a7f34bd commit 97a3ba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clj/src/cljd/core.cljd
Original file line number Diff line number Diff line change
Expand Up @@ -2521,7 +2521,7 @@
(defn ^num abs
{:doc "Returns the absolute value of a."
:inline-arities #{1}
:inline (fn [a] `(.abs ~a))}
:inline (fn [a] `(.num:abs ~a))}
[^num a]
(.abs a))

Expand Down

0 comments on commit 97a3ba2

Please sign in to comment.