chromium-gcc-r1.patch 689 B

123456789101112131415
  1. diff --git a/base/numerics/safe_math_shared_impl.h b/base/numerics/safe_math_shared_impl.h
  2. index 99f230ce7e9a..de2415d402f5 100644
  3. --- a/base/numerics/safe_math_shared_impl.h
  4. +++ b/base/numerics/safe_math_shared_impl.h
  5. @@ -21,8 +21,7 @@
  6. #if !defined(__native_client__) && \
  7. ((defined(__clang__) && \
  8. ((__clang_major__ > 3) || \
  9. - (__clang_major__ == 3 && __clang_minor__ >= 4))) || \
  10. - (defined(__GNUC__) && __GNUC__ >= 5))
  11. + (__clang_major__ == 3 && __clang_minor__ >= 4))))
  12. #include "base/numerics/safe_math_clang_gcc_impl.h"
  13. #define BASE_HAS_OPTIMIZED_SAFE_MATH (1)
  14. #else