Skip to content

Commit

Permalink
more lints, because every single platform must of course fail differe…
Browse files Browse the repository at this point in the history
…ntly
  • Loading branch information
teh-cmc committed Mar 4, 2024
1 parent 51456e5 commit 25b281a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/cpp/external_data_loader/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ void set_time_from_args(const rerun::RecordingStream& rec, cxxopts::ParseResult&
if (pos != std::string::npos) {
auto timeline_name = time_str.substr(0, pos);
int64_t time = std::stol(time_str.substr(pos + 1));
rec.set_time_seconds(timeline_name, time);
rec.set_time_seconds(timeline_name, static_cast<double>(time));
}
}
}
Expand Down

0 comments on commit 25b281a

Please sign in to comment.