File tree Expand file tree Collapse file tree 3 files changed +2
-8
lines changed
Expand file tree Collapse file tree 3 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ struct FlowQueue
126126 }
127127
128128 // TODO: remove optimization with GCC > 15
129- #if defined(__linux__) && defined(__GNUC__)
129+ #if defined(__linux__) && defined(__GNUC__) && !defined(__clang__)
130130 [[gnu::optimize(" no-delete-null-pointer-checks" )]]
131131 #endif // if defined(__GNUC__)
132132 bool is_empty () const noexcept
Original file line number Diff line number Diff line change @@ -781,7 +781,7 @@ void ThroughputSubscriber::run()
781781 {
782782 command_sample.m_totaltime = std::numeric_limits<uint64_t >::min ();
783783 }
784- else if (total_time_count > std::numeric_limits<uint64_t >::max ())
784+ else if (total_time_count > std::numeric_limits<double >::max ())
785785 {
786786 command_sample.m_totaltime = std::numeric_limits<uint64_t >::max ();
787787 }
Original file line number Diff line number Diff line change 3535using namespace eprosima ::fastdds;
3636using namespace eprosima ::fastdds::rtps;
3737
38- #if FASTDDS_IS_BIG_ENDIAN_TARGET
39- const Endianness_t DEFAULT_ENDIAN = BIGEND;
40- #else
41- const Endianness_t DEFAULT_ENDIAN = LITTLEEND;
42- #endif // if FASTDDS_IS_BIG_ENDIAN_TARGET
43-
4438#if defined(_WIN32)
4539#define COPYSTR strcpy_s
4640#else
You can’t perform that action at this time.
0 commit comments