Skip to content

Commit b4a23c3

Browse files
authored
Merge pull request #64 from JuliaConstraints/fix_nan
Fix a NaN issue in ChairmarkExt
2 parents 6c1867e + a0f79fc commit b4a23c3

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PerfChecker"
22
uuid = "6309bf6b-a531-4b08-891e-8ee981e5c424"
33
authors = ["Azzaare <[email protected]>"]
4-
version = "0.2.3"
4+
version = "0.2.4"
55

66
[deps]
77
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"

ext/MakieExt/chair.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ function PerfChecker.checkres_to_scatterlines(
1818
versionnums = [x.pkgs[i].version for i in eachindex(x.pkgs)]
1919

2020
f = Figure()
21+
if iszero(data)
22+
return f
23+
end
24+
2125
ax = f[1, 1] = Axis(f)
2226
colors = make_colors(length(props))
2327
max = 2

0 commit comments

Comments
 (0)