Skip to content

Commit

Permalink
Clang fix
Browse files Browse the repository at this point in the history
  • Loading branch information
beomki-yeo committed Oct 16, 2024
1 parent 1414b91 commit f253944
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion io/include/traccc/io/csv/cell.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ struct cell {
float timestamp = 0.;
float value = 0.;

//auto operator<=>(const cell& other) const = default;
// auto operator<=>(const cell& other) const = default;

// geometry_id,measurement_id,channel0,channel1,timestamp,value
DFE_NAMEDTUPLE(cell, geometry_id, measurement_id, channel0, channel1,
Expand Down
2 changes: 1 addition & 1 deletion io/src/csv/cell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ bool operator<(const cell& lhs, const cell& rhs) {
return (lhs.channel1 < rhs.channel1);
} else {
return (lhs.channel0 < rhs.channel0);
}
}
}

} // namespace traccc::io::csv
2 changes: 1 addition & 1 deletion tests/cuda/test_ckf_combinatorics_telescope.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
#include "traccc/cuda/finding/finding_algorithm.hpp"
#include "traccc/device/container_d2h_copy_alg.hpp"
#include "traccc/device/container_h2d_copy_alg.hpp"
#include "traccc/utils/event_data.hpp"
#include "traccc/io/read_measurements.hpp"
#include "traccc/io/utils.hpp"
#include "traccc/simulation/simulator.hpp"
#include "traccc/utils/event_data.hpp"
#include "traccc/utils/ranges.hpp"

// Test include(s).
Expand Down
2 changes: 1 addition & 1 deletion tests/cuda/test_ckf_toy_detector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
#include "traccc/device/container_d2h_copy_alg.hpp"
#include "traccc/device/container_h2d_copy_alg.hpp"
#include "traccc/finding/finding_algorithm.hpp"
#include "traccc/utils/event_data.hpp"
#include "traccc/io/read_measurements.hpp"
#include "traccc/io/utils.hpp"
#include "traccc/performance/container_comparator.hpp"
#include "traccc/simulation/simulator.hpp"
#include "traccc/utils/event_data.hpp"
#include "traccc/utils/ranges.hpp"

// Test include(s).
Expand Down
2 changes: 1 addition & 1 deletion tests/io/test_event_data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
#include "traccc/clusterization/measurement_creation_algorithm.hpp"
#include "traccc/clusterization/sparse_ccl_algorithm.hpp"
#include "traccc/io/data_format.hpp"
#include "traccc/utils/event_data.hpp"
#include "traccc/io/read_cells.hpp"
#include "traccc/io/read_detector_description.hpp"
#include "traccc/io/read_digitization_config.hpp"
#include "traccc/io/utils.hpp"
#include "traccc/utils/event_data.hpp"

// VecMem include(s).
#include <vecmem/memory/host_memory_resource.hpp>
Expand Down

0 comments on commit f253944

Please sign in to comment.