Skip to content
This repository has been archived by the owner on Jan 28, 2019. It is now read-only.

Fixup some compile warnings #78

Merged
merged 2 commits into from
Mar 2, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/clj/clojure/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -1655,7 +1655,7 @@
(map #(str ", " %) (rest valid-keys)))))))

;;multimethods
(def global-hierarchy)
(def ^:private global-hierarchy)

(defmacro defmulti
"Creates a new multimethod with the associated dispatch function.
Expand Down Expand Up @@ -5309,7 +5309,7 @@

(defn- descriptor [^Class c] (clojure.asm.Type/getDescriptor c))

(declare process-annotation)
(declare ^:private process-annotation)
(defn- add-annotation [^clojure.asm.AnnotationVisitor av name v]
(cond
(vector? v) (let [avec (.visitArray av name)]
Expand Down