(
func_name,
decl=False,
headers=["feature_detection_math.h", "feature_detection_cmath.h"],
)
| 140 | |
| 141 | def check_math_capabilities(config, ext, moredefs, mathlibs): |
| 142 | def check_func( |
| 143 | func_name, |
| 144 | decl=False, |
| 145 | headers=["feature_detection_math.h", "feature_detection_cmath.h"], |
| 146 | ): |
| 147 | return config.check_func( |
| 148 | func_name, |
| 149 | libraries=mathlibs, |
| 150 | decl=decl, |
| 151 | call=True, |
| 152 | call_args=FUNC_CALL_ARGS[func_name], |
| 153 | headers=headers, |
| 154 | ) |
| 155 | |
| 156 | def check_funcs_once( |
| 157 | funcs_name, |
no test coverage detected