aboutsummaryrefslogblamecommitdiff
path: root/www/chromium/files/patch-third__party_blink_renderer_platform_wtf_math__extras.h
blob: b184b8b79210107be09c40fc71b2050d3249f34f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                                                       
                                                         
                                                         


                              




                                                                  

                                  
                                                                          
                                                                

                                   


                             
 

                                                                              
--- third_party/blink/renderer/platform/wtf/math_extras.h.orig	2022-07-22 17:30:31 UTC
+++ third_party/blink/renderer/platform/wtf/math_extras.h
@@ -128,6 +128,10 @@ constexpr float Grad2turn(float g) {
   return g * (1.0f / 400.0f);
 }
 
+#if defined(OS_FREEBSD)
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Winvalid-constexpr"
+#endif
 constexpr double RoundHalfTowardsPositiveInfinity(double value) {
   return std::floor(value + 0.5);
 }
@@ -135,6 +139,9 @@ constexpr double RoundHalfTowardsPositiveInfinity(doub
 constexpr float RoundHalfTowardsPositiveInfinity(float value) {
   return std::floor(value + 0.5f);
 }
+#if defined(OS_FREEBSD)
+#pragma clang diagnostic pop
+#endif
 
 // ClampTo() is implemented by templated helper classes (to allow for partial
 // template specialization) as well as several helper functions.