From ced767960c31dae5dab87001cc68f5d0bcc9c7b5 Mon Sep 17 00:00:00 2001 From: Lee Spector Date: Sun, 3 Sep 2023 21:43:23 -0400 Subject: [PATCH] Prevent reader conditional from violating syntax outside of :clj --- src/propeller/gp.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/propeller/gp.cljc b/src/propeller/gp.cljc index adfe378..40ec91d 100644 --- a/src/propeller/gp.cljc +++ b/src/propeller/gp.cljc @@ -79,7 +79,7 @@ #?(:clj (shutdown-agents))) ;; (>= generation max-generations) - #?(:clj (shutdown-agents)) + (do #?(:clj (shutdown-agents))) ;; :else (recur (inc generation) (if (:elitism argmap)