123456789101112131415161718 |
- /*
- * Copyright (c) 2020-2020, BLUETRUM Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #ifndef BMSIS_GCC_H__
- #define BMSIS_GCC_H__
- /* ignore some GCC warnings */
- #if defined ( __GNUC__ )
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wsign-conversion"
- #pragma GCC diagnostic ignored "-Wconversion"
- #pragma GCC diagnostic ignored "-Wunused-parameter"
- #endif
- #endif
|