bmsis_gcc.h 397 B

123456789101112131415161718
  1. /*
  2. * Copyright (c) 2020-2020, BLUETRUM Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef BMSIS_GCC_H__
  7. #define BMSIS_GCC_H__
  8. /* ignore some GCC warnings */
  9. #if defined ( __GNUC__ )
  10. #pragma GCC diagnostic push
  11. #pragma GCC diagnostic ignored "-Wsign-conversion"
  12. #pragma GCC diagnostic ignored "-Wconversion"
  13. #pragma GCC diagnostic ignored "-Wunused-parameter"
  14. #endif
  15. #endif