Skip to content

Commit a752299

Browse files
committed
revert accidental type hints
1 parent 0b5502b commit a752299

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/main/cljs/cljs/core.cljs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2918,7 +2918,7 @@ reduces them without incurring seq initialization"
29182918
"Bitwise shift right"
29192919
[x n] (cljs.core/bit-shift-right x n))
29202920

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

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

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

0 commit comments

Comments
 (0)