File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 66
66
TEST_LIBS := $(DEP_DIR ) benchmark/src/libbenchmark.a $(DEP_DIR ) protobuf/src/.libs/libprotobuf.a
67
67
ABSL_LIBS := \
68
68
$(DEP_DIR ) abseil-cpp/absl/base/libabsl_*.a \
69
+ $(DEP_DIR ) abseil-cpp/absl/container/libabsl_*.a \
69
70
$(DEP_DIR ) abseil-cpp/absl/debugging/libabsl_*.a \
71
+ $(DEP_DIR ) abseil-cpp/absl/hash/libabsl_*.a \
70
72
$(DEP_DIR ) abseil-cpp/absl/numeric/libabsl_*.a \
71
73
$(DEP_DIR ) abseil-cpp/absl/status/libabsl_*.a \
72
74
$(DEP_DIR ) abseil-cpp/absl/strings/libabsl_*.a \
Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ DiscreteTrajectory<Frame>::NewSegment() {
185
185
}
186
186
187
187
template <typename Frame>
188
- typename DiscreteTrajectory<Frame>::DiscreteTrajectory
188
+ DiscreteTrajectory<Frame>
189
189
DiscreteTrajectory<Frame>::DetachSegments(SegmentIterator const begin) {
190
190
DiscreteTrajectory detached (uninitialized);
191
191
Original file line number Diff line number Diff line change @@ -517,7 +517,8 @@ void DiscreteTrajectorySegment<Frame>::WriteToMessage(
517
517
serialized_downsampling_parameters->mutable_tolerance ());
518
518
}
519
519
message->set_number_of_dense_points (
520
- std::max (0LL , number_of_dense_points_ - number_of_points_to_skip_at_end));
520
+ std::max<std::int64_t >(
521
+ 0 , number_of_dense_points_ - number_of_points_to_skip_at_end));
521
522
522
523
// Convert the |exact| vector into a set, and add the extremities. This
523
524
// ensures that we don't have redundancies. The set is sorted by time to
You can’t perform that action at this time.
0 commit comments