Skip to content

Commit

Permalink
Fix warnings on cljs
Browse files Browse the repository at this point in the history
  • Loading branch information
SevereOverfl0w committed May 20, 2019
1 parent 000944b commit ddb8ebb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/aero/core.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,8 @@
(and (> attempts 0)
(= (-> incomplete ::value :tag) 'ref))
(do
(binding [*out* *err*]
(binding [*out* #?(:clj *err*
:cljs *out*)]
(println "WARNING: Unable to resolve"
(str \" (pr-str (-> incomplete ::value)) \")
"at"
Expand Down

0 comments on commit ddb8ebb

Please sign in to comment.