diff options
Diffstat (limited to 'gcc/cp/method.c')
-rw-r--r-- | gcc/cp/method.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cp/method.c b/gcc/cp/method.c index c3897482b01..532e45120f8 100644 --- a/gcc/cp/method.c +++ b/gcc/cp/method.c @@ -770,7 +770,7 @@ build_overload_value (type, value, flags) else { REAL_VALUE_TO_DECIMAL (val, "%.20e", bufp); - bufp = (char *) index (bufp, 'e'); + bufp = (char *) strchr (bufp, 'e'); if (!bufp) strcat (digit_buffer, "e0"); else @@ -799,7 +799,7 @@ build_overload_value (type, value, flags) } } #ifdef NO_DOT_IN_LABEL - bufp = (char *) index (bufp, '.'); + bufp = (char *) strchr (bufp, '.'); if (bufp) *bufp = '_'; #endif |