1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Fix GCC warning in math.c

This commit is contained in:
Ilija Tovilo
2023-10-02 10:55:57 +02:00
parent b56141c5dd
commit fcae58809f

View File

@@ -159,6 +159,8 @@ static inline double php_round_helper(double value, int mode) {
return integral;
EMPTY_SWITCH_DEFAULT_CASE();
}
// FIXME: GCC bug, branch is considered reachable.
ZEND_UNREACHABLE();
}
/* }}} */