From: Nick Clifton Date: Thu, 25 Jun 2020 10:16:42 +0000 (+0100) Subject: Remove the use of the register keyword in the libiberty.h header file - it is depreca... X-Git-Url: https://git.efficios.com/?a=commitdiff_plain;h=6248d9d647708606f8f79f42fdf96757cd09c963;p=deliverable%2Fbinutils-gdb.git Remove the use of the register keyword in the libiberty.h header file - it is deprecated and incompatible with C++17. * libiberty.h (bsearch_r): Remove use of the register keyword from the prototype. --- diff --git a/include/ChangeLog b/include/ChangeLog index 225167973b..8e06abff34 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2020-06-25 Nick Clifton + + * libiberty.h (bsearch_r): Remove use of the register keyword from + the prototype. + 2020-06-24 H.J. Lu Sync with GCC diff --git a/include/libiberty.h b/include/libiberty.h index 0bb5b81d4a..591e9ac48d 100644 --- a/include/libiberty.h +++ b/include/libiberty.h @@ -643,9 +643,9 @@ extern int pwait (int, int *, int); /* Like bsearch, but takes and passes on an argument like qsort_r. */ -extern void *bsearch_r (register const void *, const void *, - size_t, register size_t, - register int (*)(const void *, const void *, void *), +extern void *bsearch_r (const void *, const void *, + size_t, size_t, + int (*)(const void *, const void *, void *), void *); #if defined(HAVE_DECL_ASPRINTF) && !HAVE_DECL_ASPRINTF