Skip to content

Commit

Permalink
revert accidental type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
swannodette committed Mar 16, 2021
1 parent 0b5502b commit a752299
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/cljs/cljs/core.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -2918,7 +2918,7 @@ reduces them without incurring seq initialization"
"Bitwise shift right"
[x n] (cljs.core/bit-shift-right x n))

(defn ^int bit-shift-right-zero-fill
(defn bit-shift-right-zero-fill
"DEPRECATED: Bitwise shift right with zero fill"
[x n] (cljs.core/bit-shift-right-zero-fill x n))

Expand Down Expand Up @@ -5394,7 +5394,7 @@ reduces them without incurring seq initialization"
_ (pv-aset r 0 embed)]
(recur (- ll 5) r)))))

(defn- push-tail [pv ^int level parent tailnode]
(defn- push-tail [pv level parent tailnode]
(let [ret (pv-clone-node parent)
subidx (bit-and (bit-shift-right-zero-fill (dec (.-cnt pv)) level) 0x01f)]
(if (== 5 level)
Expand Down

0 comments on commit a752299

Please sign in to comment.