Skip to content

Commit

Permalink
Update display.cpp
Browse files Browse the repository at this point in the history
bugfix
  • Loading branch information
mt82 authored Jul 8, 2024
1 parent ae0351a commit 13b7c16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/display.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ void show(int index, bool showtrj, bool showede, bool showdig, bool showrec)
else if (lw > 10.)
lw = 10.;

if (isnan(vec_cl->at(i).sz)) {
if (std::isnan(vec_cl->at(i).sz)) {
TMarker* m1 = new TMarker(vec_cl->at(i).z, vec_cl->at(i).y, 20);
m1->SetMarkerColor(kBlue);
m1->SetMarkerSize(lw);
Expand Down

0 comments on commit 13b7c16

Please sign in to comment.