Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(autoware_multi_object_tracker): fix clang-diagnostic-unused-private-field #9491

Merged
merged 1 commit into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ class TrackerObjectDebugger

std::vector<ObjectData> object_data_list_;
std::list<int32_t> unused_marker_ids_;
int32_t marker_id_ = 0;
std::vector<std::vector<ObjectData>> object_data_groups_;

std::vector<std::string> channel_names_;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ class InputStream

// bool is_time_initialized_{false};
int initial_count_{0};
double expected_interval_{};
double latency_mean_{};
double latency_var_{};
double interval_mean_{};
Expand Down Expand Up @@ -130,8 +129,6 @@ class InputManager
double target_stream_latency_std_{0.04}; // [s]
double target_stream_interval_{0.1}; // [s]
double target_stream_interval_std_{0.02}; // [s]
double target_latency_{0.2}; // [s]
double target_latency_band_{1.0}; // [s]

private:
void getObjectTimeInterval(
Expand Down
Loading