Skip to content
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
2 changes: 1 addition & 1 deletion include/boost/uuid/detail/cstring.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ namespace detail {
// memcpy

// Note: The function below is a template to prevent an early check whether the function body can ever be evaluated in the context of a constant expression.
// It can't, and that causes compilation errors with clang. The function must still be marked as constexpr to be able to call them in other
// It can't, and that causes compilation errors with clang. The function must still be marked as constexpr to be able to call it in other
// functions that are constexpr, even if such calls are never evaluated in a constant expression. Otherwise, gcc 5 through 8 gets upset.

template< typename = void >
Expand Down
2 changes: 1 addition & 1 deletion include/boost/uuid/detail/simd_vector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ union simd_vector
return *reinterpret_cast< const vector_type* >(bytes);
}

#if defined(BOOST_GCC) && (BOOST_GCC >= 40800)
#if defined(BOOST_GCC) && (BOOST_GCC >= 40600)
#pragma GCC diagnostic pop
#endif
};
Expand Down