Joel Svensson
Joel Svensson
I'd rather grab from hackage or if it was integrated well with stack. Is that stackage? My stack.yaml file is full of those odd dependency lines with ugly hashes for...
I think this is related to some recent work we did. We took a different approach and are now using the same ~count the leaves~ approach on array tuples. At...
Thanks! I am just working to increase testing coverage and didn't figure those comditionals out :)
CPPCHECK claims /home/joels/Current/lispbm/src/extensions/display_extensions.c:1320:47: style: Condition 'end_is_past0!=0' is always true [knownConditionTrueFalse] && (start_is_past0 != 0 || end_is_past0 != 0); ^ /home/joels/Current/lispbm/src/extensions/display_extensions.c:1322:47: style: Condition 'end_is_past1!=0' is always true [knownConditionTrueFalse] && (start_is_past1 !=...
There is a run_cppcheck script in the repl directory I think :)
If cppcheck is right that end != 0 is always true, then those are equivalent. Note that your truth tables for 1 and 2 only differs where end = 0...
We may have an interesting case to inform CPPCHECK of if it is possible to reproduce in a simple setting. Good hunting for the root issue though, even if it...