You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently decided to instrument my entire project to check against possible errors. To my surprise, the project started to crash due to screen fdef instrumentation.
After some checking I found out the problem: fdef screen uses s/tuple to define the arguments; tuple however requires a vector but the arguments to a function are passed as a list which are not the same.
I recently decided to instrument my entire project to check against possible errors. To my surprise, the project started to crash due to
screen
fdef instrumentation.After some checking I found out the problem:
fdef screen
usess/tuple
to define the arguments;tuple
however requires a vector but the arguments to a function are passed as a list which are not the same.See this Clojure ticket for more information: https://dev.clojure.org/jira/browse/CLJ-2071
I think the correct way should be:
The text was updated successfully, but these errors were encountered: